So I got the T65 core and set the mode to 6502. Then I put this into my VHDL in place of the Free6502 core.
It was far easier than expected, but there is a very weird issue.
With the old Free6502 core the command:works fine and dumps the char set to the screen.
When using the same command line and the T65 core, the FOR loop is executed once. To get it to work you have to specify the (optional) control variable in the NEXT statement. I.e.Why?!
It was far easier than expected, but there is a very weird issue.
With the old Free6502 core the command:
Code:
F.I=0TO255;I?#8000=I;N.
When using the same command line and the T65 core, the FOR loop is executed once. To get it to work you have to specify the (optional) control variable in the NEXT statement. I.e.
Code:
F.I=0TO255;I?#8000=I;N.I
Statistics: Posted by Grumps — Fri Jul 12, 2024 9:51 am