I saw Stuart's program on creation of ASMDATA block from a file
https://forum.powerbasic.com/forum/u...ode#post815737
how do we make use of this resultant ASMDATA block ? what would be its applications?
I know that to convert this block into a working program is to place a ! in front of DB
for example
becomes
but will this scheme work?
https://forum.powerbasic.com/forum/u...ode#post815737
how do we make use of this resultant ASMDATA block ? what would be its applications?
I know that to convert this block into a working program is to place a ! in front of DB
for example
Code:
DB 77,90,10,0,2,0,0,0,4,0,15,0,255,255,0,0,192,0,0,0,0,0,0,0,64,0,0,0,0
Code:
! DB 77,90,10,0,2,0,0,0,4,0,15,0,255,255,0,0,192,0,0,0,0,0,0,0,64,0,0,0,0
Comment