Recently, I have been studying jyy's Computer System Fundamentals Exercise Course,
and when working on pa1, I came across a project that runs NES games.
Issues encountered:
- Unable to find
SIGSTKSZ
parameter
Modify SIGSTKSZ
to a fixed parameter
//uint8_t sigstack[SIGSTKSZ];
uint8_t sigstack[8192];
- Incorrect serial
Modify nemu/src/device/serial.c#init_serial
, it varies for each person, mine is 9.