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
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,8 @@ Options:
43
43
44
44
--quiet suppress messages on screen (except for critical errors)
45
45
46
+
--addr prints memory address for each line (assumed base address #8000)
47
+
46
48
47
49
The maximum program size for ROM file conversion is 16368 bytes and the variable area must start beyond address #C000. The program will fail if it sets the variable area to any address under #C000 (e.g. by using a CLEAR statement).
Copy file name to clipboardExpand all lines: src/cli/basbinizer.c
+27-11Lines changed: 27 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,8 @@ void usage(void)
42
42
fprintf(options.stdoutf, "\t<screen mode> is the SCREEN mode in MSX-BASIC to be set before loading the screen. Default: 2\n");
43
43
fprintf(options.stdoutf, "\nOptions:\n");
44
44
fprintf(options.stdoutf, "\t--fix\t\tFixes certain data errors found in the source .BAS file\n");
45
-
fprintf(options.stdoutf, "\t--quiet\t\t suppress messages on screen (except for critical errors)\n\n");
45
+
fprintf(options.stdoutf, "\t--quiet\t\t suppress messages on screen (except for critical errors)\n");
46
+
fprintf(options.stdoutf, "\t--addr\t\t prints memory address for each line (assumed base address #8000)\n\n");
46
47
47
48
fprintf(options.stdoutf, "ROM files must be under %d bytes and the variable area must start beyond address #C000. The program will fail if it sets the variable area to any address under #C000 (e.g. by using a CLEAR statement)\n\n", MAX_ROM_SIZE);
0 commit comments