-
Notifications
You must be signed in to change notification settings - Fork 109
/
emu86.sh
executable file
·29 lines (22 loc) · 1.22 KB
/
emu86.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env bash
# Run ELKS in EMU86 (basic IA16 emulator)
# EMU86 is part of the cross tools
# See https://github.com/mfld-fr/emu86
# For ELKS ROM Configuration:
# ELKS must be configured minimally with 'cp emu86-rom.config .config'
# or use './buildimages.sh fast'
# This uses headless console, HLT on idle, ROM filesystem.
# Kernel image @ segment 0xE000 (as 64K BIOS extension)
# Root filesystem @ segment 0x8000 (assumes 512K RAM & 512K ROM)
# 8088 ROM version using emu-rom-full.config from './buildimages.sh fast'
exec emu86 -w 0xe0000 -f image/rom-8088.bin -w 0x80000 -f image/romfs-8088.bin ${1+"$@"}
# just built ROM version using 'make'
#exec emu86 -w 0xe0000 -f elks/arch/i86/boot/Image -w 0x80000 -f image/romfs.bin -I image/fd1440.img ${1+"$@"}
# For ELKS Full ROM Configuration:
# ELKS must be configured minimally with 'cp emu86-rom-full.config .config'
# This adds MINIX/FAT filesytems with BIOS driver
#exec emu86 -w 0xe0000 -f image/rom-8088.bin -w 0x80000 -f image/romfs-8088.bin -I image/fd1440.img ${1+"$@"}
# For ELKS disk image Configuration:
# ELKS must be configured with 'cp emu86-disk.config .config'
# This uses headless console, HLT on idle, no CONFIG_IDE_PROBE
#exec emu86 -I image/fd1440.img ${1+"$@"}