Add Z180 & Z280 timer config settings

Allows Z180 & Z280 system periodic timer to be enabled/disabled via config.  Enabled by default.
This commit is contained in:
Wayne Warthen
2021-03-18 10:37:08 -07:00
parent 9d2e465356
commit ccda402b9b
12 changed files with 23 additions and 3 deletions

View File

@@ -434,13 +434,17 @@ SYSTIM .SET TM_SIMH
#ENDIF
;
#IF ((CPUFAM == CPU_Z180) & (INTMODE == 2))
#IF (Z180_TIMER)
SYSTIM .SET TM_Z180
.ECHO " Z180"
#ENDIF
#ENDIF
;
#IF ((CPUFAM == CPU_Z280) & (MEMMGR == MM_Z280))
#IF (Z280_TIMER)
SYSTIM .SET TM_Z280
.ECHO " Z280"
#ENDIF
#ENDIF
;
#IF SYSTIM == TM_NONE