Compare commits
10 Commits
3df5a940a4
...
5fcfb5ac61
Author | SHA1 | Date |
---|---|---|
|
5fcfb5ac61 | |
|
acfebaaae9 | |
|
609828b274 | |
|
0b81c08d8d | |
|
f7793b12e4 | |
|
acc90317a8 | |
|
c98ecb4e2d | |
|
8eed2bd31a | |
|
9711b4ecc1 | |
|
23ac63a261 |
|
@ -27,6 +27,12 @@ Copy the graphics file:
|
||||||
$ cp <path_to_the_graphics_file> src/chars.bin
|
$ cp <path_to_the_graphics_file> src/chars.bin
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Create the target directory:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ mkdir target
|
||||||
|
```
|
||||||
|
|
||||||
### Building
|
### Building
|
||||||
|
|
||||||
To build the binary, execute:
|
To build the binary, execute:
|
||||||
|
|
BIN
demo.png
BIN
demo.png
Binary file not shown.
Before Width: | Height: | Size: 169 KiB After Width: | Height: | Size: 3.6 KiB |
|
@ -20,7 +20,6 @@ SEGMENTS {
|
||||||
AREADATA: load = PRG1, type = ro, optional = yes;
|
AREADATA: load = PRG1, type = ro, optional = yes;
|
||||||
ENEMYDATA: load = PRG1, type = ro, optional = yes;
|
ENEMYDATA: load = PRG1, type = ro, optional = yes;
|
||||||
CHARS: load = PRG2, type = ro, optional = yes;
|
CHARS: load = PRG2, type = ro, optional = yes;
|
||||||
COPYCHARS: load = PRG2, type = ro, optional = yes;
|
|
||||||
SOUNDENGINE: load = PRG2, type = ro, optional = yes;
|
SOUNDENGINE: load = PRG2, type = ro, optional = yes;
|
||||||
BANK3: load = PRG3, type = ro, optional = yes;
|
BANK3: load = PRG3, type = ro, optional = yes;
|
||||||
BANKSWITCH: load = PRG3, type = ro, optional = yes;
|
BANKSWITCH: load = PRG3, type = ro, optional = yes;
|
||||||
|
|
442
src/main.asm
442
src/main.asm
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue