chore: remove unnecessary executable flags
Closes #4.
refactor: save pc + 4 in stages
fix: jumping should flush two registers
fix: sign extend only when misaligned access
Merge pull request #2 from Rutherther/feat/misaligned-reads
Support misaligned read
tests: add simple ma.c program for testing misaligned access
feat: add misaligned memory access support
feat: move jumping to execute stage
fix: temporarily turn off switching fetch valid
The instruction is always valid, since
for now jumps are calculated right away,
not one cycle after decode. That means
that next instruction is not fetched!
This is fine for simulation,
but when synthesized I think this
would slow down the processor as there
has to be the register file read performed
along with alu operation in one cycle.
First this should be changed, then uncomment
this line, to make the fetched pc+4 instruction
invalid when jumping.
Merge pull request #1 from Rutherther/feat/pipeline
Implement pipeline
docs: better document the stage code, organize it better
docs: document pipeline a bit
chore: import cpu types in stages
chore: recover singlecycle version
feat: add forwarding signal for better debugging
chore: add new files to compilation list
fix: linker file issues, naming of linked file
fix: use reg for procedural assignments