-
Notifications
You must be signed in to change notification settings - Fork 2
Plug In: ML to BASIC
Chysn edited this page Feb 4, 2022
·
4 revisions
ML to BASIC converts the 6502 code in a specified range to a BASIC program in the current BASIC stage. The 6502 code will be appended to the existing program, with line numbers in increments of 5.
Installation
.P "ML"
Usage
.U start end+1 [R/H/T]
where start is the start address, end is the end address, and R, H, and T are options.
If R is specified after the end address, uses the relocatable syntax. Otherwise, uses absolute addresses.
If H is specified after the end address, creates hex data entry lines instead of 6502 code.
If T is specified after the end address, creates assertion test data instead of 6502 code.
If the disassembly would extend beyond the end of the BASIC stage, the existing BASIC program (if any) is restored, and an OUT OF MEMORY error is displayed.