| 144 | } |
| 145 | |
| 146 | static __attribute__((unused)) void cpu_abort(RISCVCPUState *s) |
| 147 | { |
| 148 | dump_regs(s); |
| 149 | abort(); |
| 150 | } |
| 151 | |
| 152 | /* addr must be aligned. Only RAM accesses are supported */ |
| 153 | #define PHYS_MEM_READ_WRITE(size, uint_type) \ |
nothing calls this directly
no test coverage detected