From e83717b454722b8c61844686377c2ac58f18454f Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 23 Aug 2022 20:56:57 -0700 Subject: Migrate the processor-independent code Due to the similarity with my ARM-based OS ghOSt, I am migrating similar code out to a common crate Not all has been moved out yet --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 344823c..3b9d0c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,10 @@ bootloader = "0.9.8" volatile = "0.2.6" x86_64 = "0.14.2" uart_16550 = "0.2.0" +os_pic = {git="https://git.christiancunningham.xyz/os_pic.git"} [package.metadata.bootimage] #run-command = ["qemu-system-x86_64", "-drive", "format=raw,file={}", "-serial", "mon:stdio"] -run-args = ["-serial", "mon:stdio"] +run-args = ["-serial", "mon:stdio", "-display", "none"] test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "mon:stdio", "-display","none"] test-success-exit-code = 33 -- cgit v1.2.1