summaryrefslogtreecommitdiff
path: root/gpxe/src/tests/comboot/shuffle-simple.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-02-09 18:08:47 -0800
committerH. Peter Anvin <hpa@zytor.com>2016-02-09 18:08:47 -0800
commitf2f897a1762fab84d2905f32b1c15dd7b42abb56 (patch)
treea38f51d3f1fcbf44afddb4736d549c12eaf491be /gpxe/src/tests/comboot/shuffle-simple.asm
parent72d2959272b4616f17a97667e6dfa9d06bf109a3 (diff)
downloadsyslinux-f2f897a1762fab84d2905f32b1c15dd7b42abb56.tar.gz
gpxe: delete long since obsolete snapshot of gPXE
gPXE has been deprecated in favor of iPXE for many, many years now. It is much better than users get it directly from the iPXE project, since we should no longer need any special modifications for Syslinux use. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'gpxe/src/tests/comboot/shuffle-simple.asm')
-rw-r--r--gpxe/src/tests/comboot/shuffle-simple.asm40
1 files changed, 0 insertions, 40 deletions
diff --git a/gpxe/src/tests/comboot/shuffle-simple.asm b/gpxe/src/tests/comboot/shuffle-simple.asm
deleted file mode 100644
index efc7d9b4..00000000
--- a/gpxe/src/tests/comboot/shuffle-simple.asm
+++ /dev/null
@@ -1,40 +0,0 @@
- bits 16
- org 100h
-
- jmp start
-
-shuffle_start:
- push 0xB800
- pop es
- mov cx, 80*24*2
- mov ax, 'AA'
- xor di, di
- rep stosw
-.lbl: jmp .lbl
-shuffle_end:
- nop
-shuffle_len equ (shuffle_end - shuffle_start + 1)
-
-start:
- ; calculate physical address of shuffled part
- xor eax, eax
- push ds
- pop ax
- shl eax, 4
- add ax, shuffle_start
- mov dword [source], eax
-
- mov ax, 0012h
- mov di, shuffle_descriptors
- mov cx, num_shuffle_descriptors
- mov ebp, 0x7c00
- int 22h
- int3
-
-shuffle_descriptors:
- dd 0x7C00
-source: dd 0
- dd shuffle_len
-
-num_shuffle_descriptors equ 1
-