Added 8086 PC bootable floppy support (pc86).

This commit is contained in:
dtrg
2007-02-20 00:25:12 +00:00
parent 1c7bb87041
commit df153ba299
15 changed files with 1028 additions and 0 deletions

20
plat/pc86/libsys/pmfile Normal file
View File

@@ -0,0 +1,20 @@
-- $Source$
-- $State$
local d = ROOTDIR.."plat/pc86/libsys/"
libsys_pc86 = acklibrary {
ACKBUILDFLAGS = {PARENT, "-ansi"},
ACKINCLUDES = {"%BINDIR%include"},
ackfile (d.."errno.s"),
ackfile (d.."_mon.s"),
ackfile (d.."_brk.s"),
ackfile (d.."_sys_rawread.s"),
ackfile (d.."_sys_rawwrite.s"),
ackfile (d.."_sys_read.c"),
ackfile (d.."_sys_write.c"),
ackfile (d.."_sys_ioctl.c"),
install = pm.install("%BINDIR%lib/%PLATFORM%/libsys.a"),
}