.NET
schmit.asc
Associated article: MS-DOS Assemblers Compared
Tags: .NET
_MS-DOS ASSEMBLERS COMPARED_
by Michael Schmit
[FIGURE 1]
problem:
...
cmp ax, 1
je near_label
... > 128 bytes of code
near_label:
...
correction:
...
cmp ax, 1
jne $ + 3
jmp near_label
... > 128 bytes of code
near_label:
...
[FIGURE 2]
Old method (MASM 5.0 and before):
Public _sample_...


