83Plus:Ports:04

From WikiTI
Revision as of 20:52, 27 March 2005 by Aquanight (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Synopsis

Port Number: 04h

Function: Interrupting Device Identification and Memory Map Control

This port serves two purposes. When read it indicates the device that triggered an interrupt. When written it sets the memory map mode.

Read Values

  • ...Someone else can do this

Write Values

  • Bit 0 reset to select memory map mode 0. In mode 0 the RAM and ROM is mapped to CPU memory as follows:
    • Address 0000h ~ 3FFFh: ROM Page 0
    • Address 4000h ~ 7FFFh: Memory Bank A (Page selected in Port 06h)
    • Address 8000h ~ BFFFh: Memory Bank B (Page selected in Port 07h)
    • 83+ Basic: Address C000h ~ FFFFh: RAM Page 0
    • Everything else: Address C000h ~ FFFFh: Page selected in Port 05h
  • Bit 0 set to select memory map mode 1. In mode 1 the RAM and ROM is mapped to CPU memory as follows:
    • Address 0000h ~ 3FFFh: ROM Page 0
    • Address 4000h ~ 7FFFh: RAM Page 0
    • Address 8000h ~ BFFFh: Memory Bank A (Page selected in Port 06h)
    • Address C000h ~ FFFFh: Memory Bank B (Page selected in Port 07h)

Bits 4~6 should be 1 on the 83+ and 83+SE, and 0 on the 84+ and 84+SE.

Comments

The calculator uses mode 0 for normal operation. If you change the memory map mode be sure to change it back before returning control. Also, do not switch from mode 0 to mode 1 inside the 4000h ~ 7FFFh range, as it will basically crash the calculator because RAM Page 0 will take over that section and RAM Page 0 cannot execute code.

Example

This example shows successful use of this port, switching to mode 1 and back. Mode 1 is the only way to execute code beyond address C000h on the 83+ Basic.

 in a, (7) ;Save current Bank B page because we'll trash it.
 push af
 ld a, 1Ch ;Put this page into 8000
 out (7), a
 jp $ + 4003h ;This will actually jump to the next statement, but in Bank B.
 ld a, 71h
 out (4), a ;Now we're in mode 1.
 ;We're still at 8000h here but we are back in Bank A.
 ;Now to go back.
 ld a, 70h ;I could dec a for this example, but...
 out (4), a ;Back in mode 0 and bank B.
 jp $ - 3FFDh ;Jump back to bank A.
 pop af
 out (7), a ;Restore bank B.

Credits and Contributions

  • Dan Englender: Originally documented memory map modes here