summaryrefslogtreecommitdiff
path: root/macros.inc
diff options
context:
space:
mode:
authorhpa <hpa>2002-06-02 05:12:25 +0000
committerhpa <hpa>2002-06-02 05:12:25 +0000
commitf3d5f4fd208cc58d58e0a000595848bde49b2dbb (patch)
treeaf98774e9c4d27c37c0d2b6eefa570679140ad67 /macros.inc
parent5823e4914a21a2aecb58345716f851407612d63e (diff)
downloadsyslinux-f3d5f4fd208cc58d58e0a000595848bde49b2dbb.tar.gz
Major rewrite of the very early SYSLINUX code. Generate the "stupid"
version in a different manner. Require NASM 0.98.32 or higher -- thus we don't need the jmpcc macros anymore.
Diffstat (limited to 'macros.inc')
-rw-r--r--macros.inc51
1 files changed, 0 insertions, 51 deletions
diff --git a/macros.inc b/macros.inc
index 3610ff54..f1cb66df 100644
--- a/macros.inc
+++ b/macros.inc
@@ -35,57 +35,6 @@
%endif
;
-; For our convenience: define macros for jump-over-unconditinal jumps
-;
-%macro jmpz 1
- jnz %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpnz 1
- jz %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpe 1
- jne %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpne 1
- je %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpc 1
- jnc %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpnc 1
- jc %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpb 1
- jnb %%skip
- jmp %1
-%%skip:
-%endmacro
-
-%macro jmpnb 1
- jb %%skip
- jmp %1
-%%skip:
-%endmacro
-
-;
; Macros similar to res[bwd], but which works in the code segment (after
; section .text)
;