Target and makefile cleanup
This commit is contained in:
parent
e84df2364f
commit
e89ac58bec
25
Makefile
25
Makefile
@ -52,16 +52,14 @@ $(BUILD)/tetros.elf: $(BUILD)/tetros.lib $(BIOS_LD)
|
|||||||
# Wrap tetros in three-stage BIOS loader
|
# Wrap tetros in three-stage BIOS loader
|
||||||
# Parameters:
|
# Parameters:
|
||||||
# - BIOS_SRC: source directory of bios assembly
|
# - BIOS_SRC: source directory of bios assembly
|
||||||
# - STAGE3: path to linked stage 3 binary
|
|
||||||
# - STAGE2_SECTOR: the index of the first sector of the stage 2 binary on the disk
|
# - STAGE2_SECTOR: the index of the first sector of the stage 2 binary on the disk
|
||||||
BIOS_SRC = ./bios
|
BIOS_SRC = ./bios
|
||||||
STAGE2_SECTOR = 5
|
STAGE2_SECTOR = 1
|
||||||
STAGE3 = $(BUILD)/tetros.elf
|
$(BUILD)/bios.bin: $(wildcard $(BIOS_SRC)/*.asm) $(BUILD)/tetros.elf
|
||||||
$(BUILD)/bios.bin: $(wildcard $(BIOS_SRC)/*.asm) $(STAGE3)
|
|
||||||
@mkdir -p "$(BUILD)"
|
@mkdir -p "$(BUILD)"
|
||||||
nasm \
|
nasm \
|
||||||
-f bin \
|
-f bin \
|
||||||
-D STAGE3=$(STAGE3) \
|
-D STAGE3=$(BUILD)/tetros.elf \
|
||||||
-D STAGE2_SECTOR=$(STAGE2_SECTOR) \
|
-D STAGE2_SECTOR=$(STAGE2_SECTOR) \
|
||||||
-o "$@" \
|
-o "$@" \
|
||||||
-l "$@.lst" \
|
-l "$@.lst" \
|
||||||
@ -92,8 +90,9 @@ $(BUILD)/disk.img: $(BUILD)/mbr.bin $(BUILD)/stage2.bin
|
|||||||
@echo ""
|
@echo ""
|
||||||
dd if=/dev/zero of=$@ bs=512 count=32
|
dd if=/dev/zero of=$@ bs=512 count=32
|
||||||
dd if="$(BUILD)/mbr.bin" of=$@ conv=notrunc bs=512
|
dd if="$(BUILD)/mbr.bin" of=$@ conv=notrunc bs=512
|
||||||
dd if="$(BUILD)/stage2.bin" of=$@ conv=notrunc seek=5 bs=512
|
dd if="$(BUILD)/stage2.bin" of=$@ conv=notrunc seek=$(STAGE2_SECTOR) bs=512
|
||||||
|
|
||||||
|
.PHONY: qemu
|
||||||
qemu: $(BUILD)/disk.img
|
qemu: $(BUILD)/disk.img
|
||||||
qemu-system-i386 \
|
qemu-system-i386 \
|
||||||
-d cpu_reset \
|
-d cpu_reset \
|
||||||
@ -103,6 +102,20 @@ qemu: $(BUILD)/disk.img
|
|||||||
-net none \
|
-net none \
|
||||||
-serial stdio \
|
-serial stdio \
|
||||||
-fda "$<"
|
-fda "$<"
|
||||||
|
|
||||||
|
# Same as qemu, but with no dependency.
|
||||||
|
# Used for remote dev, where build box != run box.
|
||||||
|
.PHONY: qemu-remote
|
||||||
|
qemu-remote:
|
||||||
|
qemu-system-i386 \
|
||||||
|
-d cpu_reset \
|
||||||
|
-no-reboot \
|
||||||
|
-smp 1 -m 2048 \
|
||||||
|
-machine q35 \
|
||||||
|
-net none \
|
||||||
|
-serial stdio \
|
||||||
|
-fda "$(BUILD)/disk.img"
|
||||||
|
|
||||||
# -gdb tcp::26000 \
|
# -gdb tcp::26000 \
|
||||||
# -S
|
# -S
|
||||||
# -enable-kvm \
|
# -enable-kvm \
|
||||||
|
@ -6,7 +6,7 @@ publish = false
|
|||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "tetros"
|
name = "tetros"
|
||||||
path = "src/main.rs"
|
path = "src/lib.rs"
|
||||||
crate-type = ["staticlib"]
|
crate-type = ["staticlib"]
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,11 +18,6 @@ mod tetrisboard;
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
mod drivers;
|
mod drivers;
|
||||||
|
|
||||||
// We don't need `main()`
|
|
||||||
// It's only here to keep rust-analyzer happy.
|
|
||||||
#[allow(dead_code)]
|
|
||||||
fn main() {}
|
|
||||||
|
|
||||||
#[global_allocator]
|
#[global_allocator]
|
||||||
static ALLOCATOR: LockedHeap = LockedHeap::empty();
|
static ALLOCATOR: LockedHeap = LockedHeap::empty();
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user