diff options
author | kato <kato@FreeBSD.org> | 2003-05-02 09:33:12 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 2003-05-02 09:33:12 +0000 |
commit | 96e3b93fb0c1418b51e85fed9c29c7273fd3a274 (patch) | |
tree | 64e569de234dea227d67d5d1606470ec329a9f34 /sys | |
parent | 97e0bf7aa2b551f34cd2c3d35114554c7c3f4455 (diff) | |
download | FreeBSD-src-96e3b93fb0c1418b51e85fed9c29c7273fd3a274.zip FreeBSD-src-96e3b93fb0c1418b51e85fed9c29c7273fd3a274.tar.gz |
IPLware support. The `IPLware' program assumes boot menu program
begins with the `jmp 0x2d4' near jump.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/pc98/boot0.5/start.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/boot/pc98/boot0.5/start.s b/sys/boot/pc98/boot0.5/start.s index b4bd9ad..211de14 100644 --- a/sys/boot/pc98/boot0.5/start.s +++ b/sys/boot/pc98/boot0.5/start.s @@ -32,6 +32,10 @@ .text start: + jmp start1 + + .org 0x2d4 +start1: cli movw %cs, %ax movw %ax, %ds |