Rename source files
parent
2627bc1ac3
commit
2072532f1b
|
@ -1,3 +1,3 @@
|
|||
src/smb.chr
|
||||
src/smbdis.o
|
||||
src/chars.bin
|
||||
src/*.o
|
||||
target/
|
||||
|
|
|
@ -24,7 +24,7 @@ $ cd super_mario_bros_tale_of_the_black_koopa
|
|||
Copy the graphics file:
|
||||
|
||||
```shell
|
||||
$ cp <path_to_the_graphics_file> src/smb.chr
|
||||
$ cp <path_to_the_graphics_file> src/chars.bin
|
||||
```
|
||||
|
||||
### Building
|
||||
|
@ -32,12 +32,12 @@ $ cp <path_to_the_graphics_file> src/smb.chr
|
|||
To build the binary, execute:
|
||||
|
||||
```shell
|
||||
$ cl65 -t nes -o target/smb.nes -C src/smb.cfg src/smbdis.asm
|
||||
$ cl65 -t nes -o target/super_mario_bros_tale_of_the_black_koopa.nes -C src/linker.cfg src/main.asm
|
||||
```
|
||||
|
||||
### Running
|
||||
|
||||
To run the game, open the file `target/smb.nes` in your favorite NES emulator. Alternatively you can run it on original hardware.
|
||||
To run the game, open the file `target/super_mario_bros_tale_of_the_black_koopa.nes` in your favorite NES emulator. Alternatively you can run it on original hardware.
|
||||
|
||||
### Playing
|
||||
|
||||
|
|
|
@ -16394,7 +16394,7 @@ BankTable:
|
|||
|
||||
.segment "CHARS"
|
||||
|
||||
Chars: .incbin "smb.chr"
|
||||
Chars: .incbin "chars.bin"
|
||||
|
||||
.segment "COPYCHARS"
|
||||
|
Loading…
Reference in New Issue