what is ASMDATA ? PowerBASIC Peer Support Community (original) (raw)

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

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

becomes

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

but will this scheme work?