Is the RetroBrew MF-PIC supported? #294
-
https://www.retrobrewcomputers.org/doku.php?id=boards:ecb:mf-pic:start Is the RetroBrew MF-PIC supported? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Mostly... The UART, RTC, and Parallel/IDE interface are all fully supported. The interrupt controller itself is not supported mostly due to lack of any specific need to do so. Thanks, Wayne |
Beta Was this translation helpful? Give feedback.
-
The default base I/O address for the MFP board is $40. If you use this address then, you would use the following in MK4_std.asm:
Note that I used If you want to change the base I/O address of the MFP board to $10, then you will need to modify the code in dsrtc.asm and ppide.asm to correspond to the correct I/O addresses. The PPIDE driver can handle the alternate I/O port address by using Thanks, Wayne |
Beta Was this translation helpful? Give feedback.
-
OK, I just posted commit 3b0951f with changes to accommodate placing the MFPIC at 0x10 instead of 0x40. These changes are not tested, so please let me know if you have any problems. The changes are pretty trivial, so they really should be OK. Thanks, Wayne |
Beta Was this translation helpful? Give feedback.
-
Thanks. MK4_pic all working. This is the console output on the MF-PIC's UART `RomWBW HBIOS v3.1.1-pre.179, 2022-07-11 MARK IV Z8S180-N @ 18.432MHz IO=0x40 ASCI0: IO=0x40 ASCI W/BRG MODE=38400,8,N,1 Unit Device Type Capacity/Mode Char 0 ASCI0: RS-232 38400,8,N,1 MARK IV Boot Loader Boot [H=Help]:` |
Beta Was this translation helpful? Give feedback.
Mostly... The UART, RTC, and Parallel/IDE interface are all fully supported. The interrupt controller itself is not supported mostly due to lack of any specific need to do so.
Thanks,
Wayne