Re: Weird behaviour on longer BASIC lines
Posted: Wed Jul 28, 2021 12:14 pm
floobydust wrote:
I linked it earlier in this post... but not quite that obvious as it was to another post 
Well as for p4c, the trivial bit is to add
Code: Select all
.feature labels_without_colonsI have the following in my Makefile:
Code: Select all
$Q ca65 -g --cpu 65c02 -l $(basename $@).lst $< -o $@
Code: Select all
$Q ld65 -t none -S 0x8000 -vm -m ehBasic.map -o ehBasic $(OBJ)
My changes to the p4c version (which I'll incorporate into my p5c version soon) are to change the character in/out, as required and also to use my own 'getline' code in my Ruby OS which allows for command-line editing, history and is much nicer with access to the "star" commands that my OS provides to do stuff like list directorys, etc. I also call the OS to get the value of LOMEM (PAGE) and HIMEM and make it "BBC Micro compatible" (I think I could run that image in a real BBC Micro if I wanted to)
I have "spool" and "exec" commands for save/load - which means I save text versions to the SD card rather than binary blobs.
I'll put more in another thread later.
-Gordon