Hello.
I'm running low on memory, so inclusion of modedefs.bas is not possible.
All I need to do is to have simple statement like this
Can I do it without modedefs.bas ?Code:serout buz,t9600, [$7e,$ff,$06,$03,$00,$00,$03,$ef]
Hello.
I'm running low on memory, so inclusion of modedefs.bas is not possible.
All I need to do is to have simple statement like this
Can I do it without modedefs.bas ?Code:serout buz,t9600, [$7e,$ff,$06,$03,$00,$00,$03,$ef]
IoannisCode:serout buz,2, [$7e,$ff,$06,$03,$00,$00,$03,$ef]
Including (or not including) modedefs.bas makes no difference what so ever to the size of the code.
serout buz,2, [$7e,$ff,$06,$06,$00,$00,$1e,$ef] increases code size from 6549 to 6639 bytes for my particular code.
but after I uncomment include modedefs.bas
I'm starting to get the following errors:
Bad BANK statement
Bad variable request address 0
If I reduce my code in size, then these errors go away.
That is strange as the modedefs.bas file is just an alias file for the text to numbers aliasing. It should not interfere with the code size.
As is the case with the common alias you do in your program, e.g.
myval var adresh
does not change the code size by any means.
Ioannis
Yes and also modedefs.bas does not like variable named BRIGHT. It gives error, when I try to include modedefs.bas and use that variable![]()
Bookmarks