mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:13:13 -06:00
Add CTC Timer Support
Add periodic timer interrupt support for CTC platforms Easy Z80 and Zeta 2. Includes watchdog servicing for Easy Z80. Default interrupt mode for Easy Z80 and Zeta 2 is now IM2.
This commit is contained in:
@@ -283,10 +283,18 @@ IVT_PIO3 .EQU 24
|
||||
;
|
||||
; INCLUDE PLATFORM SPECIFIC HARDWARE DEFINITIONS
|
||||
;
|
||||
#IF ((PLATFORM == PLT_SBC) | (PLATFORM == PLT_ZETA) | (PLATFORM == PLT_ZETA2))
|
||||
#IF (PLATFORM == PLT_SBC)
|
||||
#INCLUDE "plt_sbc.inc"
|
||||
#ENDIF
|
||||
;
|
||||
#IF (PLATFORM == PLT_ZETA)
|
||||
#INCLUDE "plt_zeta.inc"
|
||||
#ENDIF
|
||||
;
|
||||
#IF (PLATFORM == PLT_ZETA2)
|
||||
#INCLUDE "plt_zeta2.inc"
|
||||
#ENDIF
|
||||
;
|
||||
#IF (PLATFORM == PLT_N8)
|
||||
#INCLUDE "plt_n8.inc"
|
||||
#ENDIF
|
||||
|
||||
Reference in New Issue
Block a user