Posted By
 Csabo on 2004-05-19 14:34:42
| Re: SYS command
Without actually seeing the exact problem, I see only one way to go about this. Bottom line: you cannot start machine language code with a simple SYS, if it's located above $8000. You can, however, use a small caller-routine (like the one I described above), which will essentially be two POKEs and one SYS every time you need to call a routine. It will work every time, regardless of the location of the code. That's what I would do, the things you mentioned above are no problems if you use this method. |