aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-07-17listbas: separate print_varname() logic from callback.B. Watson
2024-07-17listbas: don't print duplicate color codes for "(" ops.B. Watson
2024-07-17TODO: add indentation item.B. Watson
2024-07-17listbas: print empty op token names correctly, handle silent let in A+.B. Watson
2024-07-17listbas: print ERROR- the same way BASIC/A+ does.B. Watson
2024-07-17listbas: quit emitting ANSI color codes in ATASCII output (derp!), print ↵B. Watson
ERROR- the same way BASIC does.
2024-07-16listbas: commentary.B. Watson
2024-07-16bas.c: clean up on_text logic.B. Watson
2024-07-16listbas: commentary.B. Watson
2024-07-16listbas: commentary.B. Watson
2024-07-16listbas: colorize BXL/BXE ops correctly.B. Watson
2024-07-16listbas: colorize aplus ops correctly, fix spacing of THEN, NOT, etc.B. Watson
2024-07-16listbas: remove -A option, make autodetect the default.B. Watson
2024-07-16listbas: initial support for autodetecting BASIC dialect (-A option).B. Watson
2024-07-16listbas: tweak doc.B. Watson
2024-07-16listbas: properly colorize BXE functions with ( as part of the name.B. Watson
2024-07-16listbas: initial support for BASIC XE.B. Watson
2024-07-16listbas: get "hacks" out of main().B. Watson
2024-07-16listbas: BXL token 0x5a WIP.B. Watson
2024-07-16listbas: initial support for BASIC XL token 0x5a (disk extensions). not ↵B. Watson
working yet...
2024-07-16listbas: print BASIC XL tokens like BASIC XL does (lowercase w/initial cap).B. Watson
2024-07-16listbas: initial (incomplete) support for BASIC XL.B. Watson
2024-07-16listbas: document Turbo and A+, plus (not yet existing) BXL/BXE.B. Watson
2024-07-16listbas: handle A+ ERROR- token (required bas.c changes); don't segfault on ↵B. Watson
runaway variable name lookup.
2024-07-16listbas: initial (incomplete) support for BASIC/A+.B. Watson
2024-07-16listbas: BASIC/A+ doesn't support hex constants.B. Watson
2024-07-16listbas: add support for Turbo BASIC XL.B. Watson
2024-07-15whichbas: move SRET_* constants to external header.B. Watson
2024-07-15bas.c: handle weirdness when VNTP > $100 (e.g. SPIDER.TB).B. Watson
2024-07-15bas.c: warn and return from walk_code() if the program ends in the middle of ↵B. Watson
a line.
2024-07-15bas.c: don't get stuck in an infinite loop if soffset == 0.B. Watson
2024-07-15bas.c: don't allow null bytes in variable name table, except at the end.B. Watson
2024-07-14bas.c: warn about _ in variable names, but allow.B. Watson
2024-07-14add sanity checking to BASIC header, in parse_header().B. Watson
2024-07-14listbas: tweak doc.B. Watson
2024-07-14listbas: tweak doc.B. Watson
2024-07-13listbas: fix signed vs. unsigned brain-damage in color_on().B. Watson
2024-07-13listbas: tweak doc.B. Watson
2024-07-13listbas: tweak doc.B. Watson
2024-07-13listbas: add -l option, fix option lists in help output and man page.B. Watson
2024-07-13listbas: color_off() at end of print_string().B. Watson
2024-07-13listbas: tweak doc.B. Watson
2024-07-13listbas: separate highlight colors for DATA items and REM text; highlight ↵B. Watson
quotes around strings and commas between DATA items as operators.
2024-07-13listbas: separate highlight colors for line numbers and DATA/REM text.B. Watson
2024-07-13listbas: commentary.B. Watson
2024-07-13listbas: move defines.B. Watson
2024-07-13listbas: environment debug stuff.B. Watson
2024-07-13listbas: avoid buffer overflow if too many spaces in LISTBAS_OPTS.B. Watson
2024-07-13listbas: add -c to --help message.B. Watson
2024-07-13diffbas: tweak doc.B. Watson