Compare commits
No commits in common. "5fcfb5ac61372945124b28eab6485a51ed8d4df4" and "3df5a940a4c1e9e42cc2d6c08a2fc5916644e01d" have entirely different histories.
5fcfb5ac61
...
3df5a940a4
|
@ -27,12 +27,6 @@ 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: 3.6 KiB After Width: | Height: | Size: 169 KiB |
|
@ -20,6 +20,7 @@ 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;
|
||||||
|
|
440
src/main.asm
440
src/main.asm
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue