2018-06-03 15:24:21 +00:00
|
|
|
clibrary {
|
|
|
|
name = "x86emu",
|
|
|
|
vars = {
|
2018-06-04 07:19:45 +00:00
|
|
|
["+cflags"] = {"-Iplat/pc86/emu/x86emu", "-DDEBUG"}
|
2018-06-03 15:24:21 +00:00
|
|
|
},
|
2022-07-14 21:57:54 +00:00
|
|
|
srcs = {
|
|
|
|
"./x86emu/debug.c",
|
|
|
|
"./x86emu/decode.c",
|
|
|
|
"./x86emu/fpu.c",
|
|
|
|
"./x86emu/ops2.c",
|
|
|
|
"./x86emu/ops.c",
|
|
|
|
"./x86emu/prim_ops.c",
|
|
|
|
"./x86emu/sys.c",
|
|
|
|
}
|
2018-06-03 15:24:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cprogram {
|
|
|
|
name = "pc86emu",
|
|
|
|
srcs = {"./main.c"},
|
|
|
|
vars = {
|
2018-06-04 07:19:45 +00:00
|
|
|
["+cflags"] = {"-Iplat/pc86/emu/x86emu", "-DDEBUG"}
|
2018-06-03 15:24:21 +00:00
|
|
|
},
|
|
|
|
deps = {
|
|
|
|
"+x86emu"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|