| ||
| Common 80x86 Assembly Language Include File File: 80x86/inc/asm.inc | ||
| 15: %macro clr 1 16: xor %1,%1 17: %endmacro 18: 19: %define nl 0x0A ;New line |
| 29: %macro pushes 1-* 30: %rep %0 31: push %1 32: %rotate 1 33: %endrep 34: %endmacro 35: 36: 37: %macro pops 1-* 38: %rep %0 39: %rotate -1 40: pop %1 41: %endrep 42: %endmacro |
| 54: %macro TODO 0 55: %ifdef TODOerrors 56: %error 'Needs some work done here.' 57: %endif 58: %endmacro |
| 81: %macro MARK 0 82: %ifdef DEBUG 83: dd 0xCCCC9090,__LINE__ 84: db __FILE__,0 85: dd 0x9090CCCC 86: %endif 87: align 4 88: %endmacro |