make-mips-interpreter
Installation
SKILL.md
MIPS Interpreter Implementation
Overview
This skill provides guidance for implementing MIPS interpreters/emulators that can load and execute MIPS ELF binaries. The core challenge involves parsing ELF files, decoding MIPS instructions, managing virtual memory, and handling system calls.
Critical Approach: Incremental Development
The most important principle for this task is incremental development over comprehensive analysis. Avoid spending excessive time analyzing before writing code. Instead:
- Start with a minimal working skeleton early
- Expand functionality iteratively
- Test frequently with partial implementations
- Debug and refine based on actual execution