We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b779b3 commit aee5cd8Copy full SHA for aee5cd8
src/asm/mod.rs
@@ -0,0 +1 @@
1
+global_asm!(include_str!("ram64.s"));
src/main.rs
@@ -31,6 +31,8 @@ mod serial;
31
#[macro_use]
32
mod common;
33
34
+#[cfg(not(test))]
35
+mod asm;
36
mod block;
37
mod bzimage;
38
mod efi;
@@ -43,9 +45,6 @@ mod pci;
43
45
mod pe;
44
46
mod virtio;
47
-#[cfg(not(test))]
-global_asm!(include_str!("asm/ram64.s"));
48
-
49
#[cfg(all(not(test), feature = "log-panic"))]
50
#[panic_handler]
51
fn panic(info: &PanicInfo) -> ! {
0 commit comments