We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my platformio ask me some modifications like this in cpu.c (missing break;) to compile correctly.
switch (reg_code) { case 0x01: reg_ptr = ®.y; break; case 0x02: reg_ptr = ®.s; break; case 0x03: reg_ptr = ®.u; break; }
and a return of something at the end of process_next_instruction()
uint32_t process_next_instruction() { // See Zaks p.250
...
return 0;
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
my platformio ask me some modifications like this in cpu.c (missing break;) to compile correctly.
and a return of something at the end of process_next_instruction()
uint32_t process_next_instruction() {
// See Zaks p.250
...
}
The text was updated successfully, but these errors were encountered: