qbasicking
Programmer
Memory locations 1264 to 1279 are not used by either DOS or
BASIC. Does anybody know if they are used by windows?
BASIC. Does anybody know if they are used by windows?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DEFINT A-Z
V$ = "16 bytes of data"
Ch = 1
DEF SEG = 0
FOR Address = &H4F0 TO &H4FF
POKE Address, ASC(MID$(V$, Ch, 1))
Ch = Ch + 1
NEXT
DEF SEG
DEF SEG = 0
FOR Address = &H4F0 TO &H4FF
Vr$ = Vr$ + CHR$(PEEK(Address))
NEXT
DEF SEG
PRINT Vr$