diff options
| author | Duncan Smith | 2010-09-07 19:12:01 -0700 |
|---|---|---|
| committer | Duncan Smith | 2010-09-07 19:12:01 -0700 |
| commit | dbe094eeae873ff5788b99d8a9c763df963d3a30 (patch) | |
| tree | adc7d83bc7634d4dc8aeab8f7955ed8fd452c7ec /680.inc | |
| parent | c4f950804cbf98ffb2ec6eef4928e1795132df83 (diff) | |
IO port framework now works
A68k is defaulting all my address moves to word size, rather than
long. I don't know whether I've expunged all this nonsense yet, but
I'm trying.
This version executes an infinite loop which writes 'A' to port 00h.
I've patched in a write-to-console function on port 00h, so this can
be used as a sort of debug monitor.
Diffstat (limited to '680.inc')
| -rw-r--r-- | 680.inc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,11 +11,11 @@ ehl EQUR d6 eixy EQUR d7 SAVEREG MACRO - movem d3-d7/a3-a6,-(sp) + movem.l d3-d7/a3-a6,-(sp) ENDM RESTREG MACRO - movem (sp)+,d3-d7/a3-a6 + movem.l (sp)+,d3-d7/a3-a6 ENDM ;; pushm MACRO |
