You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some tests check the output of multiple source files, and cannot be tested using the new source file option.
They could be if we allow multiple source files on byte tester.
The tests instructions of each file would simply be concatenated as if it was one big file, example:
main.s:
@BT result.rom
.db "01>" // @BT TEST-01 01 START
ld a, (hl) // @BT DE AD
-------
more.s:
ld c, a // @BT BE EF
.db "<01" // @BT END
$ byte_tester -s main.s more.s
Tests instructions read by byte tester: result.rom TEST-01 01 START DE AD BE EF END
The text was updated successfully, but these errors were encountered:
I don't think that would work on an Amiga where I use the run_tests.sh script to run the tests. There the shell is not a modern Bash shell, and it's pretty buggy and old. That said I think we should make this by enhancing byte_tester as it shouldn't be a huge task and would then work everywhere regardless of the shell.
Some tests check the output of multiple source files, and cannot be tested using the new source file option.
They could be if we allow multiple source files on byte tester.
The tests instructions of each file would simply be concatenated as if it was one big file, example:
$ byte_tester -s main.s more.s
Tests instructions read by byte tester:
result.rom TEST-01 01 START DE AD BE EF END
The text was updated successfully, but these errors were encountered: