I seem to recall someone had ca65-syntax source for MS 6502 BASIC in a single .s file somewhere, but searching only turns up the mist64 implementation that's spread out over many smaller files. Anyone have a link for the single-file version? I've seen Grant Searle's version too, but I thought there was one on github somewhere.
TIA!
Single file MS BASIC source?
Re: Single file MS BASIC source?
emeb wrote:
I seem to recall someone had ca65-syntax source for MS 6502 BASIC in a single .s file somewhere, but searching only turns up the mist64 implementation that's spread out over many smaller files. Anyone have a link for the single-file version? I've seen Grant Searle's version too, but I thought there was one on github somewhere.
TIA!
TIA!
There are many ehBasics out there - the one I'm using has some 65C02 "updates" and is a single file in ca65 format. I can't take responsibility for the 65C02 tweaks though, that was our member: floobydust memberlist.php?mode=viewprofile&u=1600
-Gordon
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/
Re: Single file MS BASIC source?
Quote:
Do you want MS Basic or is ehBasic (which is more or less MS Basic) good enough?
There are many ehBasics out there - the one I'm using has some 65C02 "updates" and is a single file in ca65 format. I can't take responsibility for the 65C02 tweaks though, that was our member: floobydust memberlist.php?mode=viewprofile&u=1600
There are many ehBasics out there - the one I'm using has some 65C02 "updates" and is a single file in ca65 format. I can't take responsibility for the 65C02 tweaks though, that was our member: floobydust memberlist.php?mode=viewprofile&u=1600
I've steeled myself, gone ahead and just grabbed the mist64 multi-file project and I'll use that.
Thanks.
Re: Single file MS BASIC source?
emeb wrote:
Quote:
Do you want MS Basic or is ehBasic (which is more or less MS Basic) good enough?
There are many ehBasics out there - the one I'm using has some 65C02 "updates" and is a single file in ca65 format. I can't take responsibility for the 65C02 tweaks though, that was our member: floobydust memberlist.php?mode=viewprofile&u=1600
There are many ehBasics out there - the one I'm using has some 65C02 "updates" and is a single file in ca65 format. I can't take responsibility for the 65C02 tweaks though, that was our member: floobydust memberlist.php?mode=viewprofile&u=1600
I've steeled myself, gone ahead and just grabbed the mist64 multi-file project and I'll use that.
Thanks.
-Gordon
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/
Re: Single file MS BASIC source?
drogon wrote:
...I tackled the load/save issue in my implementation by LISTing to a text file, then importing text as if it had been typed. Slightly slower than a binary memory dump, but effective... ehBasic does have hooks for load/save though, but I've not used them.