From 659cd8adbd940c4a7566cdc4a461ba05b5d2177c Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 30 May 2021 02:03:21 +0200 Subject: added long mode example with 4 level paging --- guest/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'guest/Makefile') diff --git a/guest/Makefile b/guest/Makefile index e3f1e1b..a2eea1b 100644 --- a/guest/Makefile +++ b/guest/Makefile @@ -1,8 +1,17 @@ +guest: guest16 guest64 +disasm: disasm16 disasm64 + guest16: guest.ld guest16.S $(CC) $(CFLAGS) -m16 -o $@ -nostdlib -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest16.S -disasm: guest16 +guest64: guest.ld guest64.S + $(CC) $(CFLAGS) -m64 -o $@ -nostdlib -fPIC -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest64.S + +disasm16: guest16 objdump -D -b binary -m i8086 -M intel $^ +disasm64: guest64 + objdump -D -b binary -m i386:x86-64 -M intel $^ + clean: - $(RM) guest16 + $(RM) guest16 guest64 -- cgit v1.2.3