Quote Originally Posted by AioDCS
I have seen however, sample programs that shows QB can execute machine language instructions using Read/Data functions. But that was a very complex series of codes.
Quite common in those days. Just a string composed of all the machine language code bytes, VarPtr used to find the address of the first byte and Call to execute it. Using Read/Data to poke the bytes into RAM was okay for 8 bit single-processing computers, but got a bit hairy under Windows (and you can't easily execute data space or write to executable space). Most computers (PC, Apple II, Commodore, etc.) had some implementation that allowed it.

All you need is an assembler to assemble the code.