aboutsummaryrefslogtreecommitdiff
path: root/whichbas.c
AgeCommit message (Expand)Author
2024-07-15whichbas: move SRET_* constants to external header.B. Watson
2024-07-11whichbas: initial support for multiple files on the command line.B. Watson
2024-07-11whichbas: add BASIC/A+ DIR, remove A+ RETURN (conflicts with Turbo CLOSE with...B. Watson
2024-07-11whichbas: much fancier BASIC/A+ detection (maybe too fancy?)B. Watson
2024-07-10whichbas: removed ifdef'ed out code.B. Watson
2024-07-10whichbas: simplify and complete logic for op tokens 0x66-0x68, aka %0 %1 %2 o...B. Watson
2024-07-10whichbas: add is_numeric_rval(). not using it yet, but it should be useful.B. Watson
2024-07-10whichbas: detect string concatenation with comma (BXL/BXE, assignments only).B. Watson
2024-07-10whichbas: add left parens to is_arith_op(), is_string_exp_op(); rewrite DEC/H...B. Watson
2024-07-10whichbas: add operator classifications (is_numeric_op() and friends), use the...B. Watson
2024-07-10whichbas: cosmetics.B. Watson
2024-07-10whichbas: commentary cosmetics.B. Watson
2024-07-10whichbas: commentary cosmetics.B. Watson
2024-07-10whichbas: code cosmetics, add missing break.B. Watson
2024-07-10whichbas: code cosmetics, add missing break.B. Watson
2024-07-10whichbas: code cosmetics.B. Watson
2024-07-10whichbas: support BASIC XL Toolkit extended commands.B. Watson
2024-07-09whichbas: add BASIC/A+ detection.B. Watson
2024-07-09whichbas: more set_type().B. Watson
2024-07-09whichbas: more set_type().B. Watson
2024-07-09whichbas: add and use set_type() (which respects keep_going).B. Watson
2024-07-09whichbas: simplify TRACE/EXTEND logic.B. Watson
2024-07-09whichbas: re-comment TRACE/EXTEND logic.B. Watson
2024-07-09whichbas: restore TRACE/EXTEND logic.B. Watson
2024-07-09whichbas: commentary.B. Watson
2024-07-09whichbas: commentary.B. Watson
2024-07-09whichbas: commentary.B. Watson
2024-07-09whichbas: handle (rare) case where -- (Turbo cmd 0x54) occurs as the 2nd or l...B. Watson
2024-07-09whichbas: comment typo.B. Watson
2024-07-09whichbas: fix logic for %0,%1,%2/LEFT$/RIGHT$/MID$ (ops 0x66/0x67/0x68).B. Watson
2024-07-09whichbas: fix logic for TRACE/EXTEND (cmd 0x58).B. Watson
2024-07-09whichbas: was erroneously treating cmd token 0x58 as an op token. derp.B. Watson
2024-07-09whichbas: fix bug in FRAC/DPEEK logic.B. Watson
2024-07-09whichbas: tweakage.B. Watson
2024-07-09whichbas: detect compiled Turbo.B. Watson
2024-07-09whichbas: improve INKEY$/semicolon logic.B. Watson
2024-07-09whichbas: improve DEC/HEX$ logic.B. Watson
2024-07-09whichbas: fix bug in DEC/HEX$ logic.B. Watson
2024-07-09whichbas: commentary.B. Watson
2024-07-09whichbas: detect INPUT without args, caused by buggy Rev A BASIC.B. Watson
2024-07-09whichbas: Improve INPUT "PROMPT";VAR (only Turbo supports the semicolon).B. Watson
2024-07-09whichbas: Detect INPUT "PROMPT";VAR.B. Watson
2024-07-08whichbas: commentary.B. Watson
2024-07-08whichbas: commentary.B. Watson
2024-07-08whichbas: fix Turbo DSOUND with 0 args, detect Turbo CLS #IOCB.B. Watson
2024-07-08whichbas: improve detection of TRACE/EXTEND, cmd token 0x59.B. Watson
2024-07-08whichbas: cmd token 0x59: PROCEDURE doesn't exist in BXL, only BXE.B. Watson
2024-07-08whichbas: add -s (script mode) option.B. Watson
2024-07-08whichbas: partial detection for BPUT/RGET and BGET/BPUT..B. Watson
2024-07-08whichbas: note to self about GET #1,A$ in Turbo.B. Watson