File tree 4 files changed +19
-26
lines changed
4 files changed +19
-26
lines changed Original file line number Diff line number Diff line change 1
1
cargo build --examples --verbose
2
2
arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/hello > target/dump-hello.txt
3
- arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/instruction_inline > target/dump-instruction_inline .txt
3
+ arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/asm_scratch > target/dump-asm_scratch .txt
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
cargo build --examples --verbose
3
3
arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/hello > target/dump-hello.txt
4
- arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/instruction_inline > target/dump-instruction_inline .txt
4
+ arm-none-eabi-objdump --headers --disassemble --demangle --architecture=armv4t --no-show-raw-insn -Mreg-names-std target/thumbv4t-none-eabi/debug/examples/asm_scratch > target/dump-asm_scratch .txt
Original file line number Diff line number Diff line change
1
+ #![ no_std]
2
+ #![ no_main]
3
+ #![ allow( unused_imports) ]
4
+
5
+ //! Scratch space for checking the asm output of stuff.
6
+
7
+ use gba:: prelude:: * ;
8
+
9
+ #[ panic_handler]
10
+ fn panic_handler ( _: & core:: panic:: PanicInfo ) -> ! {
11
+ loop { }
12
+ }
13
+
14
+ #[ no_mangle]
15
+ extern "C" fn main ( ) -> ! {
16
+ loop { }
17
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments