1
0
mirror of https://github.com/mre/mos6502.git synced 2024-11-24 11:31:00 +00:00

Compile functional test from sources

This commit is contained in:
Matthias 2023-06-28 10:12:09 +02:00
parent a7765431cd
commit fa6e4f49f1
4 changed files with 6136 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
build:
ca65 6502_functional_test.ca65
ld65 -C ../linker.cfg -o 6502_functional_test.bin 6502_functional_test.o

View File

@ -17,6 +17,14 @@ make build
This will create a `6502_functional_test.bin` file in the `build` directory,
which the emulator will load.
## Running
Then, from the root of the repository, run:
```bash
cargo run --release --example functional
```
## Credits
Taken from