Skip to content

Commit d9c8e40

Browse files
committed
Updated scripts for debugger fixes
Cleanups
1 parent 3bdd512 commit d9c8e40

10 files changed

Lines changed: 11 additions & 17 deletions

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The following enhancements and changes have been made to Atari Dev Studio:
44

55
## 0.11.6
66

7+
* Restored batari Basic debugger extensions to previous (.lst, .sym)
78
* Fixed issue where sometimes compilation issues didn't always cleanup files (batari Basic and 7800basic)
89

910
## 0.11.5

out/bin/compilers/bB/2600bas.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if /I "%2"=="-O" (
5656

5757
REM --- Assemble final binary ---
5858
wasmtime run --dir . --dir "%srcdir%" --dir "%bB%\includes" ^
59-
"%bB%\dasm.wasm" "%~1.asm" -I. -I"%bB%\includes" -f3 -p20 -l"%~1.list.txt" -s"%~1.symbol.txt" -o"%~1.bin" | wasmtime run --dir . --dir "%srcdir%" --dir "%bB%" "%bB%\bbfilter.wasm"
59+
"%bB%\dasm.wasm" "%~1.asm" -I. -I"%bB%\includes" -f3 -p20 -l"%~1.lst" -s"%~1.sym" -o"%~1.bin" | wasmtime run --dir . --dir "%srcdir%" --dir "%bB%" "%bB%\bbfilter.wasm"
6060

6161
REM --- Create an ACE file if the binary is DPC+ ---
6262
wasmtime run --dir "%CD%::/" --dir "%bB%::/bB" "%bB%\relocateBB.wasm" "%~nx1.bin"

out/bin/compilers/bB/2600basic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if [ "$2" = "-O" ]
4949
wasmtime run --dir=. --dir="$bB" "$bB/postprocess.wasm" -i "$bB" > "$1.asm"
5050
fi
5151

52-
wasmtime run --dir=. --dir="$bB" "$bB/dasm.wasm" "$1.asm" -I"$bB/includes" -f3 -l"$1.list.txt" -p20 -s"$1.symbol.txt" -o"$1.bin" | wasmtime "$bB/bbfilter.wasm"
52+
wasmtime run --dir=. --dir="$bB" "$bB/dasm.wasm" "$1.asm" -I"$bB/includes" -f3 -l"$1.lst" -p20 -s"$1.sym" -o"$1.bin" | wasmtime "$bB/bbfilter.wasm"
5353

5454
wasmtime run --dir="$PWD" --dir=. --dir="$bB" "$bB"/relocateBB.wasm "$1.bin"
5555

out/compilers/batariBasicCompiler.js

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/compilers/batariBasicCompiler.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/compilers/seventyEightHundredBasicCompiler.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)