aboutsummaryrefslogtreecommitdiff
path: root/listamsb.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-12 15:54:50 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-12 15:54:50 -0400
commit0ad49c95e719edaf1f27e4a0941943b708c82e60 (patch)
tree9061cc59a19340728d961ed52ad9dbfaf4375834 /listamsb.c
parentb4c06dd0ced93c1c49076375becccfe5eec860cb (diff)
downloadbw-atari8-tools-0ad49c95e719edaf1f27e4a0941943b708c82e60.tar.gz
listamsb: -v output for -D and -C.
Diffstat (limited to 'listamsb.c')
-rw-r--r--listamsb.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/listamsb.c b/listamsb.c
index ec1b027..4fd1903 100644
--- a/listamsb.c
+++ b/listamsb.c
@@ -504,6 +504,15 @@ void write_code(int addr, int lineno, const unsigned char *code) {
fputc(0x00, outfile);
}
+int comment_only_line(const unsigned char *code) {
+ if(code[0] == TOK_REM) return 1;
+ if(code[0] == ':') {
+ if(code[1] == TOK_SQUOTE || code[1] == TOK_BANG)
+ return 1;
+ }
+ return 0;
+}
+
int crunch_line(void) {
unsigned char code[MAX_LINE_LEN_HARD + 1], byte;
int lineno, ptr, codelen = 0, in_string = 0, in_comment = 0, commentstart = 0;
@@ -544,10 +553,9 @@ int crunch_line(void) {
/* omit comment-only lines */
if(!keep_rems) {
- if(code[0] == TOK_REM) return 0;
- if(code[0] == ':') {
- if(code[1] == TOK_SQUOTE || code[1] == TOK_BANG)
- return 0;
+ if(comment_only_line(code)) {
+ verbose(1, "removing comment-only line %d", lineno);
+ return 0;
}
}
@@ -715,7 +723,7 @@ int decrunch_line(void) {
/* NOP */
} else {
if(tok == ' ' || is_comment_start(tok)) {
- verbose(2, "found space/comment at line %d", lineno);
+ verbose(1, "found space/comment at line %d", lineno);
spacecount++;
}
if(tok == '"') {