()
| 50 | #[test] |
| 51 | fn rom_is_at_least_m_trap_offset() { |
| 52 | let bytes = generate_rom_image(); |
| 53 | assert!( |
| 54 | bytes.len() >= M_TRAP_ADDR as usize, |
| 55 | "ROM must be at least {} bytes so _m_trap fits; got {} bytes", |
| 56 | M_TRAP_ADDR, |
| 57 | bytes.len() |
| 58 | ); |
nothing calls this directly
no test coverage detected