mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-27 00:03:00 +00:00
Renamed RTS to RTN
This commit is contained in:
parent
677515924a
commit
9cd5bf7d0a
16 changed files with 230 additions and 230 deletions
|
@ -46,7 +46,7 @@ BRK
|
||||||
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
|
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
|
||||||
@text2 [ Hello 20 World 0a00 ]
|
@text2 [ Hello 20 World 0a00 ]
|
||||||
|
|
11
assembler.c
11
assembler.c
|
@ -18,7 +18,7 @@ typedef signed short Sint16;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char name[64], items[16][64];
|
char name[64], items[16][64];
|
||||||
Uint8 len;
|
Uint8 len, refs;
|
||||||
} Macro;
|
} Macro;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -45,10 +45,10 @@ Program p;
|
||||||
/* clang-format off */
|
/* clang-format off */
|
||||||
|
|
||||||
char ops[][4] = {
|
char ops[][4] = {
|
||||||
"BRK", "NOP", "LIT", "LDR", "STR", "JMP", "JSR", "RTS",
|
"BRK", "NOP", "LIT", "LDR", "STR", "JMP", "JSR", "RTN",
|
||||||
"EQU", "NEQ", "GTH", "LTH", "AND", "XOR", "ROL", "ROR",
|
"EQU", "NEQ", "GTH", "LTH", "AND", "XOR", "ROL", "ROR",
|
||||||
"POP", "DUP", "SWP", "OVR", "ROT", "---", "WSR", "RSW",
|
"POP", "DUP", "SWP", "OVR", "ROT", "---", "WSR", "RSW",
|
||||||
"ADD", "SUB", "MUL", "DIV", "---", "---", "---", "PRG"
|
"ADD", "SUB", "MUL", "DIV", "---", "---", "---", "---"
|
||||||
};
|
};
|
||||||
|
|
||||||
int scin(char *s, char c) { int i = 0; while(s[i]) if(s[i++] == c) return i - 1; return -1; } /* string char index */
|
int scin(char *s, char c) { int i = 0; while(s[i]) if(s[i++] == c) return i - 1; return -1; } /* string char index */
|
||||||
|
@ -434,10 +434,13 @@ void
|
||||||
cleanup(char *filename)
|
cleanup(char *filename)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
printf("Assembled %s, %d labels.\n\n", filename, p.llen);
|
printf("Assembled %s, %d labels, %d macros.\n\n", filename, p.llen, p.mlen);
|
||||||
for(i = 0; i < p.llen; ++i)
|
for(i = 0; i < p.llen; ++i)
|
||||||
if(!p.labels[i].refs)
|
if(!p.labels[i].refs)
|
||||||
printf("--- Unused label: %s\n", p.labels[i].name);
|
printf("--- Unused label: %s\n", p.labels[i].name);
|
||||||
|
for(i = 0; i < p.mlen; ++i)
|
||||||
|
if(!p.macros[i].refs)
|
||||||
|
printf("--- Unused macro: %s\n", p.macros[i].name);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -20,5 +20,5 @@ cc -std=c89 -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werr
|
||||||
# cc uxn.c emulator.c -std=c89 -Os -DNDEBUG -g0 -s -Wall -Wno-unknown-pragmas -L/usr/local/lib -lSDL2 -o bin/emulator
|
# cc uxn.c emulator.c -std=c89 -Os -DNDEBUG -g0 -s -Wall -Wno-unknown-pragmas -L/usr/local/lib -lSDL2 -o bin/emulator
|
||||||
|
|
||||||
# run
|
# run
|
||||||
./bin/assembler projects/software/nasu.usm bin/boot.rom
|
./bin/assembler projects/software/left.usm bin/boot.rom
|
||||||
./bin/emulator bin/boot.rom
|
./bin/emulator bin/boot.rom
|
||||||
|
|
|
@ -17,7 +17,7 @@ BRK
|
||||||
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
|
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
|
||||||
@text2 [ Hello 20 World 0a00 ]
|
@text2 [ Hello 20 World 0a00 ]
|
||||||
|
|
|
@ -56,7 +56,7 @@ BRK
|
||||||
,slime_icn =Sprite.addr
|
,slime_icn =Sprite.addr
|
||||||
~slime =Sprite.color
|
~slime =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@default_icn [ 3c7e ffdb ffe7 7e3c ]
|
@default_icn [ 3c7e ffdb ffe7 7e3c ]
|
||||||
@up_icn [ 2466 e7db ffff 7e3c ]
|
@up_icn [ 2466 e7db ffff 7e3c ]
|
||||||
|
|
|
@ -31,14 +31,14 @@ BRK
|
||||||
~textarea.x1 #0001 SUB2 ~textarea.y1 #0001 SUB2 ~textarea.x2 ~textarea.y2 #00 ,line-rect JSR2
|
~textarea.x1 #0001 SUB2 ~textarea.y1 #0001 SUB2 ~textarea.x2 ~textarea.y2 #00 ,line-rect JSR2
|
||||||
~textarea.x1 #0002 SUB2 ~textarea.y1 #0002 SUB2 ~textarea.x2 #0001 ADD2 ~textarea.y2 #0001 ADD2 #01 ,line-rect JSR2
|
~textarea.x1 #0002 SUB2 ~textarea.y1 #0002 SUB2 ~textarea.x2 #0001 ADD2 ~textarea.y2 #0001 ADD2 #01 ,line-rect JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@redraw
|
@redraw
|
||||||
|
|
||||||
~textarea.x1 ~textarea.y1 ~textarea.x2 ~textarea.y2 #01 ,fill-rect JSR2
|
~textarea.x1 ~textarea.y1 ~textarea.x2 ~textarea.y2 #01 ,fill-rect JSR2
|
||||||
~textarea.x1 ~textarea.y1 #04 ~textarea.addr ,draw-textarea JSR2
|
~textarea.x1 ~textarea.y1 #04 ~textarea.addr ,draw-textarea JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@blink-cursor
|
@blink-cursor
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ RTS
|
||||||
@skip
|
@skip
|
||||||
~timer #01 ADD =timer
|
~timer #01 ADD =timer
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@tile-rect ( x1 y1 x2 y2 color addr )
|
@tile-rect ( x1 y1 x2 y2 color addr )
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ RTS
|
||||||
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
,$ver ~Sprite.y ~rect.y2 LTH2 JMP2? POP2
|
,$ver ~Sprite.y ~rect.y2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@fill-rect ( x1 y1 x2 y2 color )
|
@fill-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
,$ver ~Screen.y ~rect.y2 LTH2 JMP2? POP2
|
,$ver ~Screen.y ~rect.y2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@line-rect ( x1 y1 x2 y2 color )
|
@line-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-textarea ( x y color addr )
|
@draw-textarea ( x y color addr )
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ RTS
|
||||||
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@do-textarea
|
@do-textarea
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ RTS
|
||||||
#06 =Sprite.color
|
#06 =Sprite.color
|
||||||
@do-textarea-end
|
@do-textarea-end
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@do-cursor
|
@do-cursor
|
||||||
|
|
||||||
|
@ -151,7 +151,7 @@ RTS
|
||||||
~mouse.x ~Mouse.x NEQU2
|
~mouse.x ~Mouse.x NEQU2
|
||||||
~mouse.y ~Mouse.y NEQU2
|
~mouse.y ~Mouse.y NEQU2
|
||||||
|
|
||||||
#0000 EQU2 RTS? ( Return if unchanged )
|
#0000 EQU2 RTN? ( Return if unchanged )
|
||||||
|
|
||||||
( clear last cursor )
|
( clear last cursor )
|
||||||
#10 ,clear_icn ~mouse.x ~mouse.y ,draw-sprite JSR2
|
#10 ,clear_icn ~mouse.x ~mouse.y ,draw-sprite JSR2
|
||||||
|
@ -160,7 +160,7 @@ RTS
|
||||||
#12 ,cursor_icn ~mouse.x ~mouse.y ,draw-sprite JSR2
|
#12 ,cursor_icn ~mouse.x ~mouse.y ,draw-sprite JSR2
|
||||||
|
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-sprite
|
@draw-sprite
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@ RTS
|
||||||
=Sprite.addr
|
=Sprite.addr
|
||||||
=Sprite.color
|
=Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@font ( spectrum-zx font )
|
@font ( spectrum-zx font )
|
||||||
[
|
[
|
||||||
|
|
|
@ -72,7 +72,7 @@ BRK
|
||||||
~pointer.y =Sprite.y
|
~pointer.y =Sprite.y
|
||||||
#11 =Sprite.color
|
#11 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-polycat
|
@draw-polycat
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ RTS
|
||||||
,polycat #00a0 ADD2 ~cat.x ~cat.y #0010 ADD2 ,draw-sprite-chr JSR2
|
,polycat #00a0 ADD2 ~cat.x ~cat.y #0010 ADD2 ,draw-sprite-chr JSR2
|
||||||
,polycat #00b0 ADD2 ~cat.x #0008 ADD2 ~cat.y #0010 ADD2 ,draw-sprite-chr JSR2
|
,polycat #00b0 ADD2 ~cat.x #0008 ADD2 ~cat.y #0010 ADD2 ,draw-sprite-chr JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@animate-polycat
|
@animate-polycat
|
||||||
|
|
||||||
|
@ -105,22 +105,22 @@ RTS
|
||||||
~pointer.y ~cat.y #0008 ADD2 GTH2 ,animate-polycat-left-down ROT JMP2? POP2
|
~pointer.y ~cat.y #0008 ADD2 GTH2 ,animate-polycat-left-down ROT JMP2? POP2
|
||||||
,polycat #0040 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0040 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
,polycat #0050 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0050 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
RTS
|
RTN
|
||||||
@animate-polycat-left-down
|
@animate-polycat-left-down
|
||||||
,polycat #0020 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0020 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
,polycat #0030 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0030 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
RTS
|
RTN
|
||||||
@animate-polycat-right
|
@animate-polycat-right
|
||||||
~pointer.y ~cat.y #0008 ADD2 GTH2 ,animate-polycat-right-down ROT JMP2? POP2
|
~pointer.y ~cat.y #0008 ADD2 GTH2 ,animate-polycat-right-down ROT JMP2? POP2
|
||||||
,polycat #0060 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0060 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
,polycat #0070 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0070 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
RTS
|
RTN
|
||||||
@animate-polycat-right-down
|
@animate-polycat-right-down
|
||||||
,polycat #0080 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0080 ADD2 ~cat.x ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
,polycat #0090 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
,polycat #0090 ADD2 ~cat.x #0008 ADD2 ~cat.y #0008 ADD2 ,draw-sprite-chr JSR2
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-label ( x y color addr )
|
@draw-label ( x y color addr )
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ RTS
|
||||||
DUP2 #0001 ADD2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 #0001 ADD2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-sprite
|
@draw-sprite
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ RTS
|
||||||
=Sprite.addr
|
=Sprite.addr
|
||||||
=Sprite.color
|
=Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-sprite-chr
|
@draw-sprite-chr
|
||||||
|
|
||||||
|
@ -151,7 +151,7 @@ RTS
|
||||||
=Sprite.addr
|
=Sprite.addr
|
||||||
#20 =Sprite.color
|
#20 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@clear_icn [ 0000 0000 0000 0000 ]
|
@clear_icn [ 0000 0000 0000 0000 ]
|
||||||
@cursor_icn [ 80c0 e0f0 f8e0 1000 ]
|
@cursor_icn [ 80c0 e0f0 f8e0 1000 ]
|
||||||
|
|
|
@ -68,7 +68,7 @@ BRK
|
||||||
~pointer.y =Sprite.y
|
~pointer.y =Sprite.y
|
||||||
#11 =Sprite.color
|
#11 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@line-rect ( x1 y1 x2 y2 color )
|
@line-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@clear_icn [ 0000 0000 0000 0000 ]
|
@clear_icn [ 0000 0000 0000 0000 ]
|
||||||
@pointer_icn [ 80c0 e0f0 f8e0 1000 ]
|
@pointer_icn [ 80c0 e0f0 f8e0 1000 ]
|
||||||
|
|
|
@ -37,7 +37,7 @@ BRK
|
||||||
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-label-middle ( x y color addr )
|
@draw-label-middle ( x y color addr )
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ RTS
|
||||||
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-label-right ( x y color addr )
|
@draw-label-right ( x y color addr )
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ RTS
|
||||||
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@get-text-length ( label )
|
@get-text-length ( label )
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ RTS
|
||||||
LDR #00 NEQ ,$loop ROT JMP2? POP2
|
LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
SWP2 POP2
|
SWP2 POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@font ( spectrum-zx font )
|
@font ( spectrum-zx font )
|
||||||
[
|
[
|
||||||
|
|
|
@ -23,7 +23,7 @@ BRK
|
||||||
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
,$ver ~Sprite.y ~pict.height ~pict.y ADD2 LTH2 JMP2? POP2
|
,$ver ~Sprite.y ~pict.height ~pict.y ADD2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@pict_small [
|
@pict_small [
|
||||||
ff80 8080 8080 8088 ffff fffc f8f9 f1f4
|
ff80 8080 8080 8088 ffff fffc f8f9 f1f4
|
||||||
|
|
|
@ -41,7 +41,7 @@ BRK
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
,$ver ~Screen.y ~rect.y2 #0001 ADD2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@fill-rect ( x1 y1 x2 y2 color )
|
@fill-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
,$ver ~Screen.y ~rect.y2 LTH2 JMP2? POP2
|
,$ver ~Screen.y ~rect.y2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-picture ( x y width height color addr )
|
@draw-picture ( x y width height color addr )
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ RTS
|
||||||
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
,$ver ~Sprite.y ~pict.height ~pict.y ADD2 LTH2 JMP2? POP2
|
,$ver ~Sprite.y ~pict.height ~pict.y ADD2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-label ( x y color addr )
|
@draw-label ( x y color addr )
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ RTS
|
||||||
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
DUP2 LDR #00 NEQ ,$loop ROT JMP2? POP2
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@pict_small [
|
@pict_small [
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ BRK
|
||||||
( background ) ~window.x1 ~window.y1 ~window.x2 ~window.y2 #02 ,fill-rect JSR2
|
( background ) ~window.x1 ~window.y1 ~window.x2 ~window.y2 #02 ,fill-rect JSR2
|
||||||
( label ) ~window.x1 ~window.y1 #04 ,window_name ,draw-label-left JSR2
|
( label ) ~window.x1 ~window.y1 #04 ,window_name ,draw-label-left JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-editor
|
@draw-editor
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ RTS
|
||||||
~window.x2 #0008 SUB2 =Sprite.x
|
~window.x2 #0008 SUB2 =Sprite.x
|
||||||
( draw ) #01 =Sprite.color
|
( draw ) #01 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-label-left ( x y color addr )
|
@draw-label-left ( x y color addr )
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ RTS
|
||||||
DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
||||||
POP2
|
POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@fill-rect ( x1 y1 x2 y2 color )
|
@fill-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
~Screen.y ~rect.y2 LTH2 ^$ver MUL JMPS
|
~Screen.y ~rect.y2 LTH2 ^$ver MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@line-rect ( x1 y1 x2 y2 color )
|
@line-rect ( x1 y1 x2 y2 color )
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ RTS
|
||||||
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
( incr ) ~Screen.y #0001 ADD2 =Screen.y
|
||||||
~Screen.y ~rect.y2 #0001 ADD2 LTH2 ^$ver MUL JMPS
|
~Screen.y ~rect.y2 #0001 ADD2 LTH2 ^$ver MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@tile-rect ( x1 y1 x2 y2 color addr )
|
@tile-rect ( x1 y1 x2 y2 color addr )
|
||||||
|
|
||||||
|
@ -152,7 +152,7 @@ RTS
|
||||||
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
~Sprite.y ~rect.y2 LTH2 ^$ver MUL JMPS
|
~Sprite.y ~rect.y2 LTH2 ^$ver MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-cursor
|
@draw-cursor
|
||||||
|
|
||||||
|
@ -176,7 +176,7 @@ RTS
|
||||||
~pointer.y =Sprite.y
|
~pointer.y =Sprite.y
|
||||||
#11 =Sprite.color
|
#11 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@pattern [ 0000 0000 0000 0000 ]
|
@pattern [ 0000 0000 0000 0000 ]
|
||||||
@clear_icn [ 0000 0000 0000 0000 ]
|
@clear_icn [ 0000 0000 0000 0000 ]
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
( load file )
|
( load file )
|
||||||
,filepath ,load-file JSR2
|
,filepath ,load-file JSR2
|
||||||
( place textarea )
|
( place textarea )
|
||||||
#0018 =textarea.x1 ~SCRN.height #0008 SUB2 =textarea.y2
|
#0018 =textarea.x1 ~Screen.height #0008 SUB2 =textarea.y2
|
||||||
|
|
||||||
,select JSR2
|
,select JSR2
|
||||||
,redraw JSR2
|
,redraw JSR2
|
||||||
|
@ -46,62 +46,62 @@ BRK
|
||||||
|
|
||||||
( ctrl )
|
( ctrl )
|
||||||
|
|
||||||
,ctrl-end ~CTRL #00 EQU ~lock #00 NEQ #0000 NEQ2 JMP2? POP2
|
,ctrl-end ~Controller #00 EQU ~lock #00 NEQ #0000 NEQ2 JMP2? POP2
|
||||||
( lock ) #04 =lock
|
( lock ) #04 =lock
|
||||||
,no-ctrl-up ~CTRL #10 NEQ JMP2? POP2
|
,no-ctrl-up ~Controller #10 NEQ JMP2? POP2
|
||||||
( clamp ) ,no-ctrl-up ~position.y #0000 EQU2 JMP2? POP2
|
( clamp ) ,no-ctrl-up ~position.y #0000 EQU2 JMP2? POP2
|
||||||
,find-lineoffset JSR2 =position.x
|
,find-lineoffset JSR2 =position.x
|
||||||
~position.y #0001 SUB2 =position.y
|
~position.y #0001 SUB2 =position.y
|
||||||
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-ctrl-up
|
@no-ctrl-up
|
||||||
,no-ctrl-down ~CTRL #20 NEQ JMP2? POP2
|
,no-ctrl-down ~Controller #20 NEQ JMP2? POP2
|
||||||
,find-lineoffset JSR2 =position.x ~position.y #0001 ADD2 =position.y
|
,find-lineoffset JSR2 =position.x ~position.y #0001 ADD2 =position.y
|
||||||
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-ctrl-down
|
@no-ctrl-down
|
||||||
,no-ctrl-left ~CTRL #40 NEQ JMP2? POP2
|
,no-ctrl-left ~Controller #40 NEQ JMP2? POP2
|
||||||
( clamp ) ,no-ctrl-left ~selection.from ,document.body EQU2 JMP2? POP2
|
( clamp ) ,no-ctrl-left ~selection.from ,document.body EQU2 JMP2? POP2
|
||||||
~selection.from #0001 SUB2 DUP2 =selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 SUB2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-ctrl-left
|
@no-ctrl-left
|
||||||
,no-ctrl-right ~CTRL #80 NEQ JMP2? POP2
|
,no-ctrl-right ~Controller #80 NEQ JMP2? POP2
|
||||||
~selection.from #0001 ADD2 DUP2 =selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 ADD2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,follow-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-ctrl-right
|
@no-ctrl-right
|
||||||
( alt )
|
( alt )
|
||||||
,no-alt ~CTRL #0f AND #02 NEQ JMP2? POP2
|
,no-alt ~Controller #0f AND #02 NEQ JMP2? POP2
|
||||||
,no-aup ~CTRL #04 ROR #01 NEQ JMP2? POP2
|
,no-aup ~Controller #04 ROR #01 NEQ JMP2? POP2
|
||||||
,find-wordstart JSR2 =selection.to
|
,find-wordstart JSR2 =selection.to
|
||||||
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-aup
|
@no-aup
|
||||||
,no-adown ~CTRL #04 ROR #02 NEQ JMP2? POP2
|
,no-adown ~Controller #04 ROR #02 NEQ JMP2? POP2
|
||||||
,find-wordend JSR2 =selection.to
|
,find-wordend JSR2 =selection.to
|
||||||
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-adown
|
@no-adown
|
||||||
,no-aleft ~CTRL #04 ROR #04 NEQ JMP2? POP2
|
,no-aleft ~Controller #04 ROR #04 NEQ JMP2? POP2
|
||||||
~selection.to #0001 SUB2 =selection.to
|
~selection.to #0001 SUB2 =selection.to
|
||||||
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-aleft
|
@no-aleft
|
||||||
,no-aright ~CTRL #04 ROR #08 NEQ JMP2? POP2
|
,no-aright ~Controller #04 ROR #08 NEQ JMP2? POP2
|
||||||
~selection.to #0001 ADD2 =selection.to
|
~selection.to #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,clamp-selection JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-aright
|
@no-aright
|
||||||
@no-alt
|
@no-alt
|
||||||
( ctrl )
|
( ctrl )
|
||||||
,no-ctrl ~CTRL #0f AND #01 NEQ JMP2? POP2
|
,no-ctrl ~Controller #0f AND #01 NEQ JMP2? POP2
|
||||||
,no-cup ~CTRL #04 ROR #01 NEQ JMP2? POP2
|
,no-cup ~Controller #04 ROR #01 NEQ JMP2? POP2
|
||||||
#0004 ,scroll-up JSR2
|
#0004 ,scroll-up JSR2
|
||||||
,redraw JSR2 ,ctrl-end JMP2
|
,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-cup
|
@no-cup
|
||||||
,no-cdown ~CTRL #04 ROR #02 NEQ JMP2? POP2
|
,no-cdown ~Controller #04 ROR #02 NEQ JMP2? POP2
|
||||||
#0004 ,scroll-down JSR2
|
#0004 ,scroll-down JSR2
|
||||||
,redraw JSR2 ,ctrl-end JMP2
|
,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-cdown
|
@no-cdown
|
||||||
,no-cleft ~CTRL #04 ROR #04 NEQ JMP2? POP2
|
,no-cleft ~Controller #04 ROR #04 NEQ JMP2? POP2
|
||||||
,goto-linestart JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,goto-linestart JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-cleft
|
@no-cleft
|
||||||
,no-cright ~CTRL #04 ROR #08 NEQ JMP2? POP2
|
,no-cright ~Controller #04 ROR #08 NEQ JMP2? POP2
|
||||||
,goto-lineend JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
,goto-lineend JSR2 ,redraw JSR2 ,ctrl-end JMP2
|
||||||
@no-cright
|
@no-cright
|
||||||
@no-ctrl
|
@no-ctrl
|
||||||
|
@ -110,9 +110,9 @@ BRK
|
||||||
|
|
||||||
( keys )
|
( keys )
|
||||||
|
|
||||||
,no-keys ~KEYS #00 EQU JMP2? POP2
|
,no-keys ~Keys #00 EQU JMP2? POP2
|
||||||
|
|
||||||
,$no-backspace ~KEYS #08 NEQ JMP2? POP2
|
,$no-backspace ~Keys #08 NEQ JMP2? POP2
|
||||||
( erase )
|
( erase )
|
||||||
,$erase-multiple ~selection.to ~selection.from SUB2 #0001 NEQ2 JMP2? POP2
|
,$erase-multiple ~selection.to ~selection.from SUB2 #0001 NEQ2 JMP2? POP2
|
||||||
~selection.to ~selection.from SUB2 ,shift-left JSR2
|
~selection.to ~selection.from SUB2 ,shift-left JSR2
|
||||||
|
@ -127,38 +127,38 @@ BRK
|
||||||
|
|
||||||
( insert )
|
( insert )
|
||||||
~selection.to ~selection.from SUB2 ,shift-right JSR2
|
~selection.to ~selection.from SUB2 ,shift-right JSR2
|
||||||
~KEYS ~selection.from STR
|
~Keys ~selection.from STR
|
||||||
~selection.from #0001 ADD2 =selection.from
|
~selection.from #0001 ADD2 =selection.from
|
||||||
|
|
||||||
$keys-end
|
$keys-end
|
||||||
~selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 ADD2 =selection.to
|
||||||
( release ) #00 =KEYS
|
( release ) #00 =Keys
|
||||||
,redraw JSR2
|
,redraw JSR2
|
||||||
|
|
||||||
@no-keys
|
@no-keys
|
||||||
|
|
||||||
( mouse )
|
( mouse )
|
||||||
|
|
||||||
,no-change ~MOUS.state ~touch.state EQU JMP2? POP2
|
,no-change ~Mouse.state ~touch.state EQU JMP2? POP2
|
||||||
|
|
||||||
#0000 =SPRT.x ~SCRN.height #0008 SUB2 =SPRT.y
|
#0000 =Sprite.x ~Screen.height #0008 SUB2 =Sprite.y
|
||||||
,mouse00icn =SPRT.addr
|
,mouse00icn =Sprite.addr
|
||||||
,nobutton1 ~MOUS.state #01 NEQ JMP2? POP2 ,mouse01icn =SPRT.addr @nobutton1
|
,nobutton1 ~Mouse.state #01 NEQ JMP2? POP2 ,mouse01icn =Sprite.addr @nobutton1
|
||||||
,nobutton2 ~MOUS.state #10 NEQ JMP2? POP2 ,mouse10icn =SPRT.addr @nobutton2
|
,nobutton2 ~Mouse.state #10 NEQ JMP2? POP2 ,mouse10icn =Sprite.addr @nobutton2
|
||||||
,nobutton3 ~MOUS.state #11 NEQ JMP2? POP2 ,mouse11icn =SPRT.addr @nobutton3
|
,nobutton3 ~Mouse.state #11 NEQ JMP2? POP2 ,mouse11icn =Sprite.addr @nobutton3
|
||||||
#01 =SPRT.color
|
#01 =Sprite.color
|
||||||
|
|
||||||
@no-change
|
@no-change
|
||||||
|
|
||||||
,touch-end ~MOUS.state #00 EQU JMP2? POP2
|
,touch-end ~Mouse.state #00 EQU JMP2? POP2
|
||||||
|
|
||||||
,touch-linebar ~MOUS.x #0010 LTH2 JMP2? POP2
|
,touch-linebar ~Mouse.x #0010 LTH2 JMP2? POP2
|
||||||
,touch-body ~MOUS.x ~SCRN.width #0008 SUB2 LTH2 JMP2? POP2
|
,touch-body ~Mouse.x ~Screen.width #0008 SUB2 LTH2 JMP2? POP2
|
||||||
,touch-scrollbar JMP2
|
,touch-scrollbar JMP2
|
||||||
|
|
||||||
@touch-end
|
@touch-end
|
||||||
|
|
||||||
~MOUS.state =touch.state
|
~Mouse.state =touch.state
|
||||||
|
|
||||||
( unlock ) ,skip-unlock ~lock #00 EQU JMP2? POP2 ~lock #01 SUB =lock @skip-unlock
|
( unlock ) ,skip-unlock ~lock #00 EQU JMP2? POP2 ~lock #01 SUB =lock @skip-unlock
|
||||||
|
|
||||||
|
@ -168,49 +168,49 @@ BRK
|
||||||
|
|
||||||
@touch-scrollbar
|
@touch-scrollbar
|
||||||
|
|
||||||
,$no-up ~MOUS.y #0008 GTH2 JMP2? POP2
|
,$no-up ~Mouse.y #0008 GTH2 JMP2? POP2
|
||||||
( decr ) ~scroll.y #00 ~scroll.y #0000 NEQ2 SUB2 =scroll.y
|
( decr ) ~scroll.y #00 ~scroll.y #0000 NEQ2 SUB2 =scroll.y
|
||||||
^$end JMPS
|
^$end JMPS
|
||||||
$no-up
|
$no-up
|
||||||
,$no-down ~MOUS.y ~SCRN.height #0008 SUB2 LTH2 JMP2? POP2
|
,$no-down ~Mouse.y ~Screen.height #0008 SUB2 LTH2 JMP2? POP2
|
||||||
( incr ) ~scroll.y #0001 ADD2 =scroll.y
|
( incr ) ~scroll.y #0001 ADD2 =scroll.y
|
||||||
^$end JMPS
|
^$end JMPS
|
||||||
$no-down
|
$no-down
|
||||||
~MOUS.y #0008 SUB2 =scroll.y
|
~Mouse.y #0008 SUB2 =scroll.y
|
||||||
$end
|
$end
|
||||||
,redraw JSR2
|
,redraw JSR2
|
||||||
,touch-end JMP2
|
,touch-end JMP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@touch-linebar
|
@touch-linebar
|
||||||
|
|
||||||
~MOUS.y #0008 DIV2 ~scroll.y ADD2 =position.y #0000 =position.x
|
~Mouse.y #0008 DIV2 ~scroll.y ADD2 =position.y #0000 =position.x
|
||||||
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
,find-selection JSR2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
,redraw JSR2
|
,redraw JSR2
|
||||||
,touch-end JMP2
|
,touch-end JMP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@touch-body
|
@touch-body
|
||||||
|
|
||||||
~MOUS.y #0008 DIV2 ~scroll.y ADD2 =position.y
|
~Mouse.y #0008 DIV2 ~scroll.y ADD2 =position.y
|
||||||
~MOUS.x ~textarea.x1 SUB2 #0007 ADD2 #0007 DIV2 =position.x
|
~Mouse.x ~textarea.x1 SUB2 #0007 ADD2 #0007 DIV2 =position.x
|
||||||
|
|
||||||
,$no-chord-cut ~MOUS.chord #01 NEQ JMP2? POP2
|
,$no-chord-cut ~Mouse.chord #01 NEQ JMP2? POP2
|
||||||
,cut JSR2
|
,cut JSR2
|
||||||
( release ) #00 DUP =MOUS.state =MOUS.chord
|
( release ) #00 DUP =Mouse.state =Mouse.chord
|
||||||
^$end JMPS
|
^$end JMPS
|
||||||
$no-chord-cut
|
$no-chord-cut
|
||||||
,$no-chord-paste ~MOUS.chord #10 NEQ JMP2? POP2
|
,$no-chord-paste ~Mouse.chord #10 NEQ JMP2? POP2
|
||||||
,paste JSR2
|
,paste JSR2
|
||||||
( release ) #00 DUP =MOUS.state =MOUS.chord
|
( release ) #00 DUP =Mouse.state =Mouse.chord
|
||||||
^$end JMPS
|
^$end JMPS
|
||||||
$no-chord-paste
|
$no-chord-paste
|
||||||
|
|
||||||
,$end ~MOUS.state #11 EQU JMP2? POP2
|
,$end ~Mouse.state #11 EQU JMP2? POP2
|
||||||
|
|
||||||
,$no-drag ~MOUS.state ~touch.state NEQ ~CTRL #0f AND #02 NEQ #0101 EQU2 JMP2? POP2
|
,$no-drag ~Mouse.state ~touch.state NEQ ~Controller #0f AND #02 NEQ #0101 EQU2 JMP2? POP2
|
||||||
( on drag )
|
( on drag )
|
||||||
,find-selection JSR2 #0001 ADD2 =selection.to
|
,find-selection JSR2 #0001 ADD2 =selection.to
|
||||||
,clamp-selection JSR2
|
,clamp-selection JSR2
|
||||||
|
@ -222,34 +222,34 @@ RTS
|
||||||
,redraw JSR2
|
,redraw JSR2
|
||||||
,touch-end JMP2
|
,touch-end JMP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@load-file ( path )
|
@load-file ( path )
|
||||||
|
|
||||||
=FILE.name #8000 =FILE.length ,document.body =FILE.load
|
=File.name #8000 =File.length ,document.body =File.load
|
||||||
( get file length )
|
( get file length )
|
||||||
,document.body =document.eof
|
,document.body =document.eof
|
||||||
$loop NOP
|
$loop NOP
|
||||||
( incr ) ~document.eof #0001 ADD2 =document.eof
|
( incr ) ~document.eof #0001 ADD2 =document.eof
|
||||||
~document.eof LDR #00 NEQ ^$loop MUL JMPS
|
~document.eof LDR #00 NEQ ^$loop MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@scroll-up ( length )
|
@scroll-up ( length )
|
||||||
|
|
||||||
DUP2 ~scroll.y LTH2 ,$clamp ROT JMP2? POP2
|
DUP2 ~scroll.y LTH2 ,$clamp ROT JMP2? POP2
|
||||||
#0000 =scroll.y POP2 RTS
|
#0000 =scroll.y POP2 RTN
|
||||||
$clamp
|
$clamp
|
||||||
~scroll.y SWP2 SUB2 =scroll.y
|
~scroll.y SWP2 SUB2 =scroll.y
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@scroll-down ( length )
|
@scroll-down ( length )
|
||||||
|
|
||||||
( TODO: Clamp )
|
( TODO: Clamp )
|
||||||
~scroll.y SWP2 ADD2 =scroll.y
|
~scroll.y SWP2 ADD2 =scroll.y
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@shift-left ( length )
|
@shift-left ( length )
|
||||||
|
|
||||||
|
@ -261,7 +261,7 @@ RTS
|
||||||
~j ~document.eof LTH2 ^$loop MUL JMPS
|
~j ~document.eof LTH2 ^$loop MUL JMPS
|
||||||
~document.eof ~i SUB2 =document.eof
|
~document.eof ~i SUB2 =document.eof
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@shift-right ( length )
|
@shift-right ( length )
|
||||||
|
|
||||||
|
@ -273,51 +273,51 @@ RTS
|
||||||
~j ~selection.from GTH2 ^$loop MUL JMPS
|
~j ~selection.from GTH2 ^$loop MUL JMPS
|
||||||
~document.eof ~i ADD2 =document.eof
|
~document.eof ~i ADD2 =document.eof
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@follow-selection
|
@follow-selection
|
||||||
|
|
||||||
,$no-up ~position.y ~scroll.y GTH2 JMP2? POP2
|
,$no-up ~position.y ~scroll.y GTH2 JMP2? POP2
|
||||||
~position.y =scroll.y RTS
|
~position.y =scroll.y RTN
|
||||||
$no-up
|
$no-up
|
||||||
,$no-down ~position.y ~SCRN.height #0010 SUB2 #0008 DIV2 ~scroll.y ADD2 LTH2 JMP2? POP2
|
,$no-down ~position.y ~Screen.height #0010 SUB2 #0008 DIV2 ~scroll.y ADD2 LTH2 JMP2? POP2
|
||||||
~position.y ~SCRN.height #0010 SUB2 #0008 DIV2 SUB2 =scroll.y RTS
|
~position.y ~Screen.height #0010 SUB2 #0008 DIV2 SUB2 =scroll.y RTN
|
||||||
$no-down
|
$no-down
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@clamp-selection
|
@clamp-selection
|
||||||
|
|
||||||
~selection.from ~selection.to LTH2 RTS?
|
~selection.from ~selection.to LTH2 RTN?
|
||||||
~selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 ADD2 =selection.to
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@goto-linestart
|
@goto-linestart
|
||||||
|
|
||||||
$loop NOP
|
$loop NOP
|
||||||
~selection.from #0001 SUB2 LDR #0a EQU RTS?
|
~selection.from #0001 SUB2 LDR #0a EQU RTN?
|
||||||
~selection.from #0001 SUB2 LDR #0d EQU RTS?
|
~selection.from #0001 SUB2 LDR #0d EQU RTN?
|
||||||
( decr ) ~selection.from DUP2 =selection.to #0001 SUB2 =selection.from
|
( decr ) ~selection.from DUP2 =selection.to #0001 SUB2 =selection.from
|
||||||
~selection.from LDR #00 NEQ ^$loop MUL JMPS
|
~selection.from LDR #00 NEQ ^$loop MUL JMPS
|
||||||
( clamp at document body )
|
( clamp at document body )
|
||||||
~selection.from ,document.body GTH2 RTS?
|
~selection.from ,document.body GTH2 RTN?
|
||||||
,document.body DUP2 =selection.from #0001 ADD2 =selection.to
|
,document.body DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@goto-lineend
|
@goto-lineend
|
||||||
|
|
||||||
$loop NOP
|
$loop NOP
|
||||||
~selection.from LDR #0a EQU RTS?
|
~selection.from LDR #0a EQU RTN?
|
||||||
~selection.from LDR #0d EQU RTS?
|
~selection.from LDR #0d EQU RTN?
|
||||||
( incr ) ~selection.from #0001 ADD2 DUP2 #0001 ADD2 =selection.to =selection.from
|
( incr ) ~selection.from #0001 ADD2 DUP2 #0001 ADD2 =selection.to =selection.from
|
||||||
~selection.from LDR #00 NEQ ^$loop MUL JMPS
|
~selection.from LDR #00 NEQ ^$loop MUL JMPS
|
||||||
( clamp at document body )
|
( clamp at document body )
|
||||||
~selection.from ,document.eof LTH2 RTS?
|
~selection.from ,document.eof LTH2 RTN?
|
||||||
,document.eof #0001 SUB2 DUP2 =selection.from #0001 ADD2 =selection.to
|
,document.eof #0001 SUB2 DUP2 =selection.from #0001 ADD2 =selection.to
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@find-wordstart
|
@find-wordstart
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ RTS
|
||||||
$end
|
$end
|
||||||
( return ) ~j #0001 SUB2
|
( return ) ~j #0001 SUB2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@find-wordend
|
@find-wordend
|
||||||
|
|
||||||
|
@ -345,7 +345,7 @@ RTS
|
||||||
$end
|
$end
|
||||||
( return ) ~j #0001 ADD2
|
( return ) ~j #0001 ADD2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@find-lineoffset ( return character offset from linestart )
|
@find-lineoffset ( return character offset from linestart )
|
||||||
|
|
||||||
|
@ -358,7 +358,7 @@ RTS
|
||||||
$end
|
$end
|
||||||
( return ) ~j
|
( return ) ~j
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@find-line ( position -> addr )
|
@find-line ( position -> addr )
|
||||||
|
|
||||||
|
@ -373,7 +373,7 @@ RTS
|
||||||
$end
|
$end
|
||||||
( return ) ~j
|
( return ) ~j
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@find-selection ( position -> addr )
|
@find-selection ( position -> addr )
|
||||||
|
|
||||||
|
@ -387,7 +387,7 @@ RTS
|
||||||
$end
|
$end
|
||||||
( return ) ~pt.x ADD2
|
( return ) ~pt.x ADD2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@cut
|
@cut
|
||||||
|
|
||||||
|
@ -395,7 +395,7 @@ RTS
|
||||||
~selection.to ~selection.from SUB2 ,shift-left JSR2
|
~selection.to ~selection.from SUB2 ,shift-left JSR2
|
||||||
~selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 ADD2 =selection.to
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@copy ( selection )
|
@copy ( selection )
|
||||||
|
|
||||||
|
@ -407,7 +407,7 @@ RTS
|
||||||
( incr ) ~i #0001 ADD2 =i
|
( incr ) ~i #0001 ADD2 =i
|
||||||
~i ~j LTH2 ^$loop MUL JMPS
|
~i ~j LTH2 ^$loop MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@paste
|
@paste
|
||||||
|
|
||||||
|
@ -419,7 +419,7 @@ RTS
|
||||||
( incr ) ~i #0001 ADD2 =i
|
( incr ) ~i #0001 ADD2 =i
|
||||||
~i ~j LTH2 ^$loop MUL JMPS
|
~i ~j LTH2 ^$loop MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@select ( position -> selection )
|
@select ( position -> selection )
|
||||||
|
|
||||||
|
@ -431,13 +431,13 @@ RTS
|
||||||
$no-space
|
$no-space
|
||||||
,$no-reached ~pt.y ~position.y #0001 SUB2 GTH2 ~pt.x ~position.x #0001 SUB2 GTH2 #0101 NEQ2 JMP2? POP2
|
,$no-reached ~pt.y ~position.y #0001 SUB2 GTH2 ~pt.x ~position.x #0001 SUB2 GTH2 #0101 NEQ2 JMP2? POP2
|
||||||
~selection.from #0001 ADD2 =selection.to
|
~selection.from #0001 ADD2 =selection.to
|
||||||
RTS
|
RTN
|
||||||
$no-reached
|
$no-reached
|
||||||
( incr ) ~pt.x #0001 ADD2 =pt.x
|
( incr ) ~pt.x #0001 ADD2 =pt.x
|
||||||
( incr ) ~selection.from #0001 ADD2 =selection.from
|
( incr ) ~selection.from #0001 ADD2 =selection.from
|
||||||
,$loop ~selection.from LDR #00 NEQ JMP2? POP2
|
,$loop ~selection.from LDR #00 NEQ JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
( drawing functions )
|
( drawing functions )
|
||||||
|
|
||||||
|
@ -448,57 +448,57 @@ RTS
|
||||||
,draw-titlebar JSR2
|
,draw-titlebar JSR2
|
||||||
|
|
||||||
( save/load icons )
|
( save/load icons )
|
||||||
~SCRN.height #0008 SUB2 =SPRT.y
|
~Screen.height #0008 SUB2 =Sprite.y
|
||||||
~SCRN.width #0018 SUB2 =SPRT.x
|
~Screen.width #0018 SUB2 =Sprite.x
|
||||||
,load_icn =SPRT.addr
|
,load_icn =Sprite.addr
|
||||||
#02 =SPRT.color
|
#02 =Sprite.color
|
||||||
~SCRN.width #0010 SUB2 =SPRT.x
|
~Screen.width #0010 SUB2 =Sprite.x
|
||||||
,save_icn =SPRT.addr
|
,save_icn =Sprite.addr
|
||||||
#02 =SPRT.color
|
#02 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-short ( short )
|
@draw-short ( short )
|
||||||
|
|
||||||
=addr
|
=addr
|
||||||
,font_hex #00 ,addr LDR #f0 AND #04 ROR #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ,addr LDR #f0 AND #04 ROR #08 MUL ADD2 =Sprite.addr
|
||||||
( draw ) #0e =SPRT.color
|
( draw ) #0e =Sprite.color
|
||||||
~SPRT.x #0008 ADD2 =SPRT.x
|
~Sprite.x #0008 ADD2 =Sprite.x
|
||||||
,font_hex #00 ,addr LDR #0f AND #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ,addr LDR #0f AND #08 MUL ADD2 =Sprite.addr
|
||||||
( draw ) #0e =SPRT.color
|
( draw ) #0e =Sprite.color
|
||||||
~SPRT.x #0008 ADD2 =SPRT.x
|
~Sprite.x #0008 ADD2 =Sprite.x
|
||||||
,font_hex #00 ,addr #0001 ADD2 LDR #f0 AND #04 ROR #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ,addr #0001 ADD2 LDR #f0 AND #04 ROR #08 MUL ADD2 =Sprite.addr
|
||||||
( draw ) #0e =SPRT.color
|
( draw ) #0e =Sprite.color
|
||||||
~SPRT.x #0008 ADD2 =SPRT.x
|
~Sprite.x #0008 ADD2 =Sprite.x
|
||||||
,font_hex #00 ,addr #0001 ADD2 LDR #0f AND #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ,addr #0001 ADD2 LDR #0f AND #08 MUL ADD2 =Sprite.addr
|
||||||
( draw ) #0e =SPRT.color
|
( draw ) #0e =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-cursor
|
@draw-cursor
|
||||||
|
|
||||||
~mouse.x ~MOUS.x NEQU2
|
~mouse.x ~Mouse.x NEQU2
|
||||||
~mouse.y ~MOUS.y NEQU2
|
~mouse.y ~Mouse.y NEQU2
|
||||||
|
|
||||||
#0000 EQU2 RTS? ( Return if unchanged )
|
#0000 EQU2 RTN? ( Return if unchanged )
|
||||||
|
|
||||||
( clear last cursor )
|
( clear last cursor )
|
||||||
~mouse.x =SPRT.x
|
~mouse.x =Sprite.x
|
||||||
~mouse.y =SPRT.y
|
~mouse.y =Sprite.y
|
||||||
,blank_icn =SPRT.addr
|
,blank_icn =Sprite.addr
|
||||||
#10 =SPRT.color
|
#10 =Sprite.color
|
||||||
|
|
||||||
( record mouse positions )
|
( record mouse positions )
|
||||||
~MOUS.x =mouse.x
|
~Mouse.x =mouse.x
|
||||||
~MOUS.y =mouse.y
|
~Mouse.y =mouse.y
|
||||||
|
|
||||||
( draw new cursor )
|
( draw new cursor )
|
||||||
~mouse.x =SPRT.x
|
~mouse.x =Sprite.x
|
||||||
~mouse.y =SPRT.y
|
~mouse.y =Sprite.y
|
||||||
,cursor_icn =SPRT.addr
|
,cursor_icn =Sprite.addr
|
||||||
#13 =SPRT.color
|
#13 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-textarea ( x y color addr )
|
@draw-textarea ( x y color addr )
|
||||||
|
|
||||||
|
@ -515,100 +515,100 @@ RTS
|
||||||
~textarea.addr LDR #00 NEQ ^$find-offset MUL JMPS
|
~textarea.addr LDR #00 NEQ ^$find-offset MUL JMPS
|
||||||
$find-offset-end
|
$find-offset-end
|
||||||
|
|
||||||
#0018 =SPRT.x #0000 =SPRT.y
|
#0018 =Sprite.x #0000 =Sprite.y
|
||||||
~textarea.addr =i
|
~textarea.addr =i
|
||||||
|
|
||||||
$loop
|
$loop
|
||||||
|
|
||||||
,$end ~SPRT.y ~SCRN.height #0010 SUB2 GTH2 JMP2? POP2
|
,$end ~Sprite.y ~Screen.height #0010 SUB2 GTH2 JMP2? POP2
|
||||||
|
|
||||||
( get character )
|
( get character )
|
||||||
,font #00 ~i LDR #20 SUB #0008 MUL2 ADD2 =SPRT.addr
|
,font #00 ~i LDR #20 SUB #0008 MUL2 ADD2 =Sprite.addr
|
||||||
|
|
||||||
( draw ) #01
|
( draw ) #01
|
||||||
~i ~selection.from #0001 SUB2 GTH2
|
~i ~selection.from #0001 SUB2 GTH2
|
||||||
~i ~selection.to LTH2 #0101 EQU2
|
~i ~selection.to LTH2 #0101 EQU2
|
||||||
#05 MUL ADD ~i ~selection.from EQU2 ADD =SPRT.color
|
#05 MUL ADD ~i ~selection.from EQU2 ADD =Sprite.color
|
||||||
|
|
||||||
,$no-linebreak ~i LDR #0a NEQ ~i LDR #0d NEQ #0101 EQU2 JMP2? POP2
|
,$no-linebreak ~i LDR #0a NEQ ~i LDR #0d NEQ #0101 EQU2 JMP2? POP2
|
||||||
( draw linebreak )
|
( draw linebreak )
|
||||||
,linebreak_icn =SPRT.addr
|
,linebreak_icn =Sprite.addr
|
||||||
( draw ) #02
|
( draw ) #02
|
||||||
~i ~selection.from #0001 SUB2 GTH2
|
~i ~selection.from #0001 SUB2 GTH2
|
||||||
~i ~selection.to LTH2 #0101 EQU2
|
~i ~selection.to LTH2 #0101 EQU2
|
||||||
#06 MUL ADD =SPRT.color
|
#06 MUL ADD =Sprite.color
|
||||||
( fill clear )
|
( fill clear )
|
||||||
$fill-clear
|
$fill-clear
|
||||||
( incr ) ~SPRT.x #0008 ADD2 =SPRT.x
|
( incr ) ~Sprite.x #0008 ADD2 =Sprite.x
|
||||||
,font =SPRT.addr
|
,font =Sprite.addr
|
||||||
#01 =SPRT.color
|
#01 =Sprite.color
|
||||||
,$fill-clear ~SPRT.x ~SCRN.width #0008 SUB2 LTH2 JMP2? POP2
|
,$fill-clear ~Sprite.x ~Screen.width #0008 SUB2 LTH2 JMP2? POP2
|
||||||
|
|
||||||
( draw line number )
|
( draw line number )
|
||||||
|
|
||||||
#0000 =SPRT.x
|
#0000 =Sprite.x
|
||||||
~scroll.y ~SPRT.y #0008 DIV2 ADD2 DUP2 SWP POP =k
|
~scroll.y ~Sprite.y #0008 DIV2 ADD2 DUP2 SWP POP =k
|
||||||
~position.y EQU2 #0c MUL =l
|
~position.y EQU2 #0c MUL =l
|
||||||
,font_hex #00 ~k #f0 AND #04 ROR #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ~k #f0 AND #04 ROR #08 MUL ADD2 =Sprite.addr
|
||||||
#02 ~l ADD =SPRT.color
|
#02 ~l ADD =Sprite.color
|
||||||
#0008 =SPRT.x
|
#0008 =Sprite.x
|
||||||
,font_hex #00 ~k #0f AND #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ~k #0f AND #08 MUL ADD2 =Sprite.addr
|
||||||
#02 ~l ADD =SPRT.color
|
#02 ~l ADD =Sprite.color
|
||||||
|
|
||||||
#0010 =SPRT.x
|
#0010 =Sprite.x
|
||||||
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
$no-linebreak
|
$no-linebreak
|
||||||
|
|
||||||
( incr ) ~i #0001 ADD2 =i
|
( incr ) ~i #0001 ADD2 =i
|
||||||
( incr ) ~SPRT.x #0007 ADD2 =SPRT.x
|
( incr ) ~Sprite.x #0007 ADD2 =Sprite.x
|
||||||
|
|
||||||
,$loop ~i LDR #00 NEQ JMP2? POP2
|
,$loop ~i LDR #00 NEQ JMP2? POP2
|
||||||
|
|
||||||
$end
|
$end
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-scrollbar
|
@draw-scrollbar
|
||||||
|
|
||||||
~SCRN.width #0008 SUB2 =SPRT.x
|
~Screen.width #0008 SUB2 =Sprite.x
|
||||||
#0000 =SPRT.y
|
#0000 =Sprite.y
|
||||||
,scrollbar_bg =SPRT.addr
|
,scrollbar_bg =Sprite.addr
|
||||||
|
|
||||||
$loop NOP
|
$loop NOP
|
||||||
( draw ) #08 =SPRT.color
|
( draw ) #08 =Sprite.color
|
||||||
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
( incr ) ~Sprite.y #0008 ADD2 =Sprite.y
|
||||||
~SPRT.y ~SCRN.height LTH2 ^$loop MUL JMPS
|
~Sprite.y ~Screen.height LTH2 ^$loop MUL JMPS
|
||||||
|
|
||||||
#0000 =SPRT.y
|
#0000 =Sprite.y
|
||||||
,arrowup_icn =SPRT.addr
|
,arrowup_icn =Sprite.addr
|
||||||
( draw ) #08 =SPRT.color
|
( draw ) #08 =Sprite.color
|
||||||
|
|
||||||
( at )
|
( at )
|
||||||
~scroll.y #0008 ADD2 =SPRT.y
|
~scroll.y #0008 ADD2 =Sprite.y
|
||||||
,scrollbar_fg =SPRT.addr
|
,scrollbar_fg =Sprite.addr
|
||||||
( draw ) #08 =SPRT.color
|
( draw ) #08 =Sprite.color
|
||||||
|
|
||||||
~SCRN.height #0008 SUB2 =SPRT.y
|
~Screen.height #0008 SUB2 =Sprite.y
|
||||||
,arrowdown_icn =SPRT.addr
|
,arrowdown_icn =Sprite.addr
|
||||||
( draw ) #08 =SPRT.color
|
( draw ) #08 =Sprite.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-titlebar
|
@draw-titlebar
|
||||||
|
|
||||||
#0018 ~SCRN.height #0008 SUB2 #09 ,filepath
|
#0018 ~Screen.height #0008 SUB2 #09 ,filepath
|
||||||
( load ) =label.addr =label.color =SPRT.y =SPRT.x
|
( load ) =label.addr =label.color =Sprite.y =Sprite.x
|
||||||
~label.addr
|
~label.addr
|
||||||
$loop NOP
|
$loop NOP
|
||||||
( draw ) DUP2 LDR #00 SWP #20 SUB #0008 MUL2 ,font ADD2 =SPRT.addr ~label.color =SPRT.color
|
( draw ) DUP2 LDR #00 SWP #20 SUB #0008 MUL2 ,font ADD2 =Sprite.addr ~label.color =Sprite.color
|
||||||
( incr ) #0001 ADD2
|
( incr ) #0001 ADD2
|
||||||
( incr ) ~SPRT.x #0008 ADD2 =SPRT.x
|
( incr ) ~Sprite.x #0008 ADD2 =Sprite.x
|
||||||
DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
DUP2 LDR #00 NEQ ^$loop MUL JMPS
|
||||||
POP2
|
POP2
|
||||||
( selection )
|
( selection )
|
||||||
~selection.from ,document.body SUB2 ,draw-short JSR2
|
~selection.from ,document.body SUB2 ,draw-short JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@font_hex ( 0-F TODO: should pull from @font instead.. )
|
@font_hex ( 0-F TODO: should pull from @font instead.. )
|
||||||
[
|
[
|
||||||
|
@ -697,13 +697,13 @@ RTS
|
||||||
|
|
||||||
|d000 @ERROR BRK
|
|d000 @ERROR BRK
|
||||||
|
|
||||||
|FF00 ;CNSL { pad 8 char 1 byte 1 short 2 }
|
|FF00 ;Console { pad 8 char 1 byte 1 short 2 }
|
||||||
|FF10 ;SCRN { width 2 height 2 pad 4 x 2 y 2 color 1 }
|
|FF10 ;Screen { width 2 height 2 pad 4 x 2 y 2 color 1 }
|
||||||
|FF20 ;SPRT { pad 8 x 2 y 2 addr 2 color 1 }
|
|FF20 ;Sprite { pad 8 x 2 y 2 addr 2 color 1 }
|
||||||
|FF30 ;CTRL { buttons 1 }
|
|FF30 ;Controller { buttons 1 }
|
||||||
|FF40 ;KEYS { key 1 }
|
|FF40 ;Keys { key 1 }
|
||||||
|FF50 ;MOUS { x 2 y 2 state 1 chord 1 xt 1 yt 1 }
|
|FF50 ;Mouse { x 2 y 2 state 1 chord 1 xt 1 yt 1 }
|
||||||
|FF60 ;FILE { pad 8 name 2 length 2 load 2 save 2 }
|
|FF60 ;File { pad 8 name 2 length 2 load 2 save 2 }
|
||||||
|
|
||||||
|FFF0 .RESET .FRAME .ERROR ( vectors )
|
|FFF0 .RESET .FRAME .ERROR ( vectors )
|
||||||
|FFF8 [ 30ff e0f3 b0f3 ] ( palette )
|
|FFF8 [ 30ff e0f3 b0f3 ] ( palette )
|
||||||
|
|
|
@ -197,7 +197,7 @@ BRK
|
||||||
~tileview.addr #0007 ADD2 LDR ~tileview.addr #0006 ADD2 STR
|
~tileview.addr #0007 ADD2 LDR ~tileview.addr #0006 ADD2 STR
|
||||||
~tileview.addr #0007 ADD2 STR
|
~tileview.addr #0007 ADD2 STR
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@op_shiftdown
|
@op_shiftdown
|
||||||
|
|
||||||
|
@ -211,14 +211,14 @@ RTS
|
||||||
~tileview.addr LDR ~tileview.addr #0001 ADD2 STR
|
~tileview.addr LDR ~tileview.addr #0001 ADD2 STR
|
||||||
~tileview.addr STR
|
~tileview.addr STR
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@redraw
|
@redraw
|
||||||
|
|
||||||
,draw-bankview JSR2
|
,draw-bankview JSR2
|
||||||
,draw-tileview JSR2
|
,draw-tileview JSR2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-bankview
|
@draw-bankview
|
||||||
|
|
||||||
|
@ -288,7 +288,7 @@ RTS
|
||||||
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
||||||
,$ver ~pt.y #10 LTH JMP2? POP2
|
,$ver ~pt.y #10 LTH JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-tileview
|
@draw-tileview
|
||||||
|
|
||||||
|
@ -386,7 +386,7 @@ RTS
|
||||||
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
( incr ) ~SPRT.y #0008 ADD2 =SPRT.y
|
||||||
,$tiles-ver ~pt.y #02 LTH JMP2? POP2
|
,$tiles-ver ~pt.y #02 LTH JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-tileview-icn
|
@draw-tileview-icn
|
||||||
|
|
||||||
|
@ -407,14 +407,14 @@ RTS
|
||||||
~SPRT.x #0040 SUB2 =SPRT.x
|
~SPRT.x #0040 SUB2 =SPRT.x
|
||||||
,$ver ~pt.y #08 LTH JMP2? POP2
|
,$ver ~pt.y #08 LTH JMP2? POP2
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-cursor
|
@draw-cursor
|
||||||
|
|
||||||
~mouse.x ~MOUS.x NEQU2
|
~mouse.x ~MOUS.x NEQU2
|
||||||
~mouse.y ~MOUS.y NEQU2
|
~mouse.y ~MOUS.y NEQU2
|
||||||
|
|
||||||
#0000 EQU2 RTS? ( Return if unchanged )
|
#0000 EQU2 RTN? ( Return if unchanged )
|
||||||
|
|
||||||
( clear last cursor )
|
( clear last cursor )
|
||||||
~mouse.x =SPRT.x
|
~mouse.x =SPRT.x
|
||||||
|
@ -432,7 +432,7 @@ RTS
|
||||||
,tool_selector #00 ~bankview.mode #08 MUL ADD2 =SPRT.addr
|
,tool_selector #00 ~bankview.mode #08 MUL ADD2 =SPRT.addr
|
||||||
#12 =SPRT.color
|
#12 =SPRT.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@draw-short ( short )
|
@draw-short ( short )
|
||||||
|
|
||||||
|
@ -449,7 +449,7 @@ RTS
|
||||||
,font_hex #00 ,addr #0001 ADD2 LDR #0f AND #08 MUL ADD2 =SPRT.addr
|
,font_hex #00 ,addr #0001 ADD2 LDR #0f AND #08 MUL ADD2 =SPRT.addr
|
||||||
( draw ) #02 =SPRT.color
|
( draw ) #02 =SPRT.color
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
( Utils )
|
( Utils )
|
||||||
|
|
||||||
|
@ -468,7 +468,7 @@ RTS
|
||||||
( incr ) ~SCRN.y #0001 ADD2 =SCRN.y
|
( incr ) ~SCRN.y #0001 ADD2 =SCRN.y
|
||||||
~SCRN.y ~rect.y2 #0001 ADD2 LTH2 ^$ver MUL JMPS
|
~SCRN.y ~rect.y2 #0001 ADD2 LTH2 ^$ver MUL JMPS
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@tool_selector [ 80c0 e0f0 f8e0 1000 ]
|
@tool_selector [ 80c0 e0f0 f8e0 1000 ]
|
||||||
@tool_hand [ 4040 4070 f8f8 f870 ]
|
@tool_hand [ 4040 4070 f8f8 f870 ]
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
( tests/jump )
|
( tests/jump )
|
||||||
|
|
||||||
%RTS { RSW2 JMP }
|
|
||||||
%JSR2 { PRG WSR2 JMP2 }
|
|
||||||
%JMC { JMP2? POP2 }
|
|
||||||
|
|
||||||
|0100 @RESET
|
|0100 @RESET
|
||||||
|
|
||||||
,test1 JSR2
|
,test1 JSR2
|
||||||
|
,test2 JSR2
|
||||||
|
|
||||||
BRK
|
BRK
|
||||||
|
|
||||||
|
@ -26,7 +23,7 @@ BRK
|
||||||
|
|
||||||
#33 =Console.byte
|
#33 =Console.byte
|
||||||
|
|
||||||
,skip1 #12 #34 LTH JMC
|
,skip1 #12 #34 LTH JMP2? POP2
|
||||||
#ff =Console.byte
|
#ff =Console.byte
|
||||||
@skip1
|
@skip1
|
||||||
|
|
||||||
|
@ -36,7 +33,7 @@ BRK
|
||||||
|
|
||||||
#44 =Console.byte
|
#44 =Console.byte
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
@test2
|
@test2
|
||||||
|
|
||||||
|
@ -51,7 +48,7 @@ RTS
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
RTS
|
RTN
|
||||||
|
|
||||||
|c000 @FRAME
|
|c000 @FRAME
|
||||||
|d000 @ERROR
|
|d000 @ERROR
|
||||||
|
|
12
uxn.c
12
uxn.c
|
@ -34,9 +34,9 @@ void op_brk(Uxn *u) { setflag(&u->status, FLAG_HALT, 1); }
|
||||||
void op_lit(Uxn *u) { u->literal += 1; }
|
void op_lit(Uxn *u) { u->literal += 1; }
|
||||||
void op_nop(Uxn *u) { (void)u; }
|
void op_nop(Uxn *u) { (void)u; }
|
||||||
void op_jmp(Uxn *u) { Uint8 a = pop8(&u->wst); u->ram.ptr += getflag(&u->status, FLAG_SIGN) ? (Sint8)a : a; }
|
void op_jmp(Uxn *u) { Uint8 a = pop8(&u->wst); u->ram.ptr += getflag(&u->status, FLAG_SIGN) ? (Sint8)a : a; }
|
||||||
void op_prg(Uxn *u) { push16(&u->wst, u->ram.ptr); }
|
|
||||||
void op_jsr(Uxn *u) { Uint8 a = pop8(&u->wst); push16(&u->rst, u->ram.ptr); u->ram.ptr += getflag(&u->status, FLAG_SIGN) ? (Sint8)a : a; }
|
void op_jsr(Uxn *u) { Uint8 a = pop8(&u->wst); push16(&u->rst, u->ram.ptr); u->ram.ptr += getflag(&u->status, FLAG_SIGN) ? (Sint8)a : a; }
|
||||||
void op_rts(Uxn *u) { u->ram.ptr = pop16(&u->rst); }
|
void op_rtn(Uxn *u) { u->ram.ptr = pop16(&u->rst); }
|
||||||
void op_ldr(Uxn *u) { Uint16 a = pop16(&u->wst); push8(&u->wst, mempeek8(u, a)); }
|
void op_ldr(Uxn *u) { Uint16 a = pop16(&u->wst); push8(&u->wst, mempeek8(u, a)); }
|
||||||
void op_str(Uxn *u) { Uint16 a = pop16(&u->wst); Uint8 b = pop8(&u->wst); mempoke8(u, a, b); }
|
void op_str(Uxn *u) { Uint16 a = pop16(&u->wst); Uint8 b = pop8(&u->wst); mempoke8(u, a, b); }
|
||||||
/* Logic */
|
/* Logic */
|
||||||
|
@ -91,12 +91,12 @@ void op_gth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u-
|
||||||
void op_lth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b < (Sint16)a : b < a); }
|
void op_lth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b < (Sint16)a : b < a); }
|
||||||
|
|
||||||
void (*ops[])(Uxn *u) = {
|
void (*ops[])(Uxn *u) = {
|
||||||
op_brk, op_nop, op_lit, op_ldr, op_str, op_jmp, op_jsr, op_rts,
|
op_brk, op_nop, op_lit, op_ldr, op_str, op_jmp, op_jsr, op_rtn,
|
||||||
op_equ, op_neq, op_gth, op_lth, op_and, op_xor, op_rol, op_ror,
|
op_equ, op_neq, op_gth, op_lth, op_and, op_xor, op_rol, op_ror,
|
||||||
op_pop, op_dup, op_swp, op_ovr, op_rot, op_nop, op_wsr, op_rsw,
|
op_pop, op_dup, op_swp, op_ovr, op_rot, op_nop, op_wsr, op_rsw,
|
||||||
op_add, op_sub, op_mul, op_div, op_nop, op_nop, op_nop, op_nop,
|
op_add, op_sub, op_mul, op_div, op_nop, op_nop, op_nop, op_nop,
|
||||||
/* 16-bit */
|
/* 16-bit */
|
||||||
op_brk, op_nop16, op_lit16, op_ldr16, op_str16, op_jmp16, op_jsr16, op_rts,
|
op_brk, op_nop16, op_lit16, op_ldr16, op_str16, op_jmp16, op_jsr16, op_rtn,
|
||||||
op_equ16, op_neq16, op_gth16, op_lth16, op_and16, op_xor16, op_rol16, op_ror16,
|
op_equ16, op_neq16, op_gth16, op_lth16, op_and16, op_xor16, op_rol16, op_ror16,
|
||||||
op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16, op_nop, op_wsr16, op_rsw16,
|
op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16, op_nop, op_wsr16, op_rsw16,
|
||||||
op_add16, op_sub16, op_mul16, op_div16, op_nop, op_nop, op_nop, op_nop
|
op_add16, op_sub16, op_mul16, op_div16, op_nop, op_nop, op_nop, op_nop
|
||||||
|
@ -106,12 +106,12 @@ Uint8 opr[][4] = { /* wstack-/+ rstack-/+ */
|
||||||
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,1,0,0}, {3,0,0,0}, {1,0,0,0}, {1,0,0,2}, {0,0,2,0},
|
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,1,0,0}, {3,0,0,0}, {1,0,0,0}, {1,0,0,2}, {0,0,2,0},
|
||||||
{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0},
|
{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0},
|
||||||
{1,0,0,0}, {1,2,0,0}, {2,2,0,0}, {2,3,0,0}, {3,3,0,0}, {0,0,0,0}, {1,0,0,1}, {0,1,1,0},
|
{1,0,0,0}, {1,2,0,0}, {2,2,0,0}, {2,3,0,0}, {3,3,0,0}, {0,0,0,0}, {1,0,0,1}, {0,1,1,0},
|
||||||
{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0},
|
{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,2,0,0},
|
||||||
/* 16-bit */
|
/* 16-bit */
|
||||||
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,2,0,0}, {4,0,0,0}, {2,0,0,0}, {2,0,0,0}, {0,0,0,0}, /* TODO */
|
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,2,0,0}, {4,0,0,0}, {2,0,0,0}, {2,0,0,0}, {0,0,0,0}, /* TODO */
|
||||||
{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, /* TODO */
|
{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, /* TODO */
|
||||||
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,0,0,2}, {0,2,2,0}, /* TODO */
|
{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,0,0,2}, {0,2,2,0}, /* TODO */
|
||||||
{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}
|
{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,2,0,0}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* clang-format on */
|
/* clang-format on */
|
||||||
|
|
Loading…
Reference in a new issue