Yes, but per my earlier example.... are we shooting for less instructions in
the program or less intructions executed in total for the program? (ie, your
23 byte example is calling dos system services, so.... lots of additional
instructions there).
Jay West
----- Original Message -----
From: Fred Cisin (XenoSoft) <cisin(a)xenosoft.com>
23 bytes in MS-DOS as a .COM file.
ORG 100h
MOV AH, 9
MOV DX, offset msg0
INT 21h
INT 20h
msg0 DB "Hello, World!$"