We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb0850 commit 0e08dabCopy full SHA for 0e08dab
1 file changed
tests/fib/test_fib.rs
@@ -2,13 +2,13 @@
2
mod tests {
3
use binary_room::instruction::*;
4
use binary_room::utils::translate_to_file;
5
- use binary_room::utils::START;
+ use binary_room::utils::ARM_START;
6
7
#[test]
8
fn test_binary_translate() {
9
let riscv_asm: Vec<RiscVInstruction> = vec![
10
RiscVInstruction::Verbatim {
11
- text: START.to_string(),
+ text: ARM_START.to_string(),
12
},
13
RiscVInstruction::Addi {
14
dest: RiscVRegister::SP,
0 commit comments