Ported the software to the new disk location
This commit is contained in:
parent
a2370ed4e3
commit
47866bbe87
2
build.sh
2
build.sh
|
@ -28,7 +28,7 @@ else
|
|||
fi
|
||||
|
||||
echo "Assembling.."
|
||||
./bin/assembler projects/software/left.usm bin/boot.rom
|
||||
./bin/assembler projects/software/neralie.usm bin/boot.rom
|
||||
|
||||
echo "Running.."
|
||||
if [ "${2}" = '--cli' ];
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|0140 ;Keys { key 1 }
|
||||
|0150 ;Mouse { x 2 y 2 state 1 chord 1 change 1 }
|
||||
|0160 ;File { pad 8 name 2 length 2 load 2 save 2 }
|
||||
|01F8 [ e0fc 30cc 30ac ] ( palette )
|
||||
|01F0 ;System { pad 8 r 2 g 2 b 2 }
|
||||
|
||||
|0200 ,RESET JMP2
|
||||
|0204 ,ERROR JMP2
|
||||
|
@ -46,7 +46,9 @@
|
|||
( program )
|
||||
|
||||
@RESET
|
||||
|
||||
|
||||
( theme ) #e0fc =System.r #30cc =System.g #30ac =System.b
|
||||
|
||||
~Screen.width 2/ #008a SUB2 =bankview.x
|
||||
~Screen.height 2/ #003f SUB2 =bankview.y
|
||||
,bank =bankview.addr
|
||||
|
|
|
@ -15,13 +15,14 @@
|
|||
|0110 ;Screen { width 2 height 2 pad 4 x 2 y 2 color 1 }
|
||||
|0120 ;Sprite { pad 8 x 2 y 2 addr 2 color 1 }
|
||||
|0190 ;DateTime { year 2 month 1 day 1 hour 1 minute 1 second 1 dow 1 doy 2 isdst 1 pad 4 get 1 }
|
||||
|01F8 [ 13fd 1ef3 1bf2 ] ( palette )
|
||||
|01F0 ;System { pad 8 r 2 g 2 b 2 }
|
||||
|
||||
|0200 ,RESET JMP2
|
||||
|0204 ,ERROR JMP2
|
||||
|0208 ,FRAME JMP2
|
||||
|
||||
@RESET
|
||||
( theme ) #13fd =System.r #1ef3 =System.g #1bf2 =System.b
|
||||
#01 =fps.current
|
||||
|
||||
#000c
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
|0140 ;Keys { key 1 }
|
||||
|0150 ;Mouse { x 2 y 2 state 1 chord 1 }
|
||||
|0160 ;File { pad 8 name 2 length 2 load 2 save 2 }
|
||||
|01F8 [ e0fd 30fd 30fd ] ( palette )
|
||||
|01F0 ;System { pad 8 r 2 g 2 b 2 }
|
||||
|
||||
|0200 ,RESET JMP2
|
||||
|0204 ,ERROR JMP2
|
||||
|
@ -66,6 +66,8 @@
|
|||
|
||||
@RESET
|
||||
|
||||
( theme ) #e0fd =System.r #30fd =System.g #30fd =System.b
|
||||
|
||||
( default canvas )
|
||||
#002a =canvas.w #001a =canvas.h
|
||||
|
||||
|
|
Loading…
Reference in New Issue