Remove Makefile + out of place rust files

This commit is contained in:
Greg Shuflin
2022-01-29 23:22:34 -08:00
parent faaadcf475
commit 4d80e10dbd
3 changed files with 0 additions and 55 deletions

View File

@@ -1,48 +0,0 @@
gamarjoba: gamarjoba.asm
nasm -f elf64 -o gamarjoba.o gamarjoba.asm
ld -o gamarjoba gamarjoba.o
run_gamarjoba: gamarjoba
./gamarjoba
baremetal_gamarjoba: baremetal_gamarjoba.asm include.c
gcc -m32 -ffreestanding -o include.o -c include.c
nasm -f elf32 baremetal_gamarjoba.asm
ld -m elf_i386 -nostdlib -T linker.ld baremetal_gamarjoba.o include.o -o baremetal_gamarjoba
run_baremetal_gamarjoba: baremetal_gamarjoba
qemu-system-i386 -kernel baremetal_gamarjoba
keyboard: keyboard.asm c_keyboard.c keyboard.rs
gcc -m32 -ffreestanding -o c_keyboard.o -c c_keyboard.c
rustc --emit obj -o rust_keyboard.o --target i686-unknown-linux-gnu keyboard.rs
nasm -f elf32 keyboard.asm
ld -m elf_i386 -nostdlib -T linker.ld keyboard.o c_keyboard.o rust_keyboard.o -o keyboard
run_keyboard: keyboard
qemu-system-i386 -kernel keyboard
run_terminal_keyboard: keyboard
qemu-system-i386 -display curses -kernel keyboard
lightshow: lightshow.asm lightshow.rs
rustc --emit obj -o lightshow_rust.o --target i686-unknown-linux-gnu -g lightshow.rs
nasm -f elf32 -g lightshow.asm
ld -m elf_i386 -nostdlib -T linker.ld lightshow.o lightshow_rust.o -o lightshow
run_lightshow: lightshow
qemu-system-i386 -kernel lightshow
debug_lightshow: lightshow
qemu-system-i386 -kernel lightshow -gdb tcp::9999 -S
.PHONY: clean
clean:
rm -f *.o
rm -f gamarjoba
rm -f baremetal_gamarjoba
rm -f keyboard
rm -f lightshow

View File

@@ -1,7 +0,0 @@
global start
section .text
bits 32
start:
mov dword [0xb800], 0x2f4b2f4f
hlt

View File