Results 131 comments of sy2002

Excellent thoughts, gentlemen. As the MMU would be part of V1.8 and Ethernet is supposed to be part of V1.,7, I suggest that Michael implements the simple version of the...

OK got it - then we will enhance the VGA routines in the monitor. Just out of curiosity: why did you add the space and not just use the "pure"...

@MJoergen Just to avoid misunderstandings: This issue here is about having a better debugger in the **emulator** and using `ncurses` in the emulator. Not yet on the hardware :-) But...

Bernd, no problem :-) I assumed that I would un-assign you from this task :-) Just did it. So this one will be either done by Michael or myself.

Here is the correct C syntax for an ISR: ``` __interrupt __rbank void irq(void) { ... } ``` So the `__interrupt` prefix is used to write ISRs. We should also...

In commit 56d0596 I updated the documentation about this feature.

@MJoergen You're right: The compiler needs to make sure that it only uses the registers `RO` to `R7` and indeed it needs to stick to our convention of doing the...

> However, we should be clear that it the programmer uses e.g. multiplication, that will result in subroutine calls inside the C library, which use register bank switching. You are...