In-Field Testing Using MISR
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* start.S */ |
|
.section .text |
|
.global _start |
|
|
|
_start: |
|
/* 1. 初始化栈指针 (Stack Pointer) */ |
|
/* tb.v里内存大小是 4096 words (16KB) */ |
|
li sp, 0x4000 |
|
|
|
call main |
|
|
|
/* 3. 如果 main 返回了(理论上不该返回),死循环兜底 */ |
|
loop: |
|
j loop
|
|
|