Browse Source

S100 Monitor Menu Key Change

Changed the menu key of the S100 Monitor from 'S' to '1' in the RomLdr.  This is to free up the 'S' key for a more generic use.
pull/578/head v3.6.0-dev.8
Wayne Warthen 7 months ago
parent
commit
c399864e95
No known key found for this signature in database GPG Key ID: 8B34ED29C07EEB0A
  1. 4
      Source/HBIOS/romldr.asm
  2. 2
      Source/ver.inc
  3. 2
      Source/ver.lib

4
Source/HBIOS/romldr.asm

@ -1557,7 +1557,7 @@ s100mon1:
ld ix,HWMON_IMGLOC ; execution resumes here
jp HB_BNKCALL ; do it
;
str_smon .db "S100 Z180 Monitor",0
str_smon .db "S100 Z180 Hardware Monitor",0
str_s100con .db "\r\n\r\nConsole on S100 Bus",0
;
#endif
@ -2635,7 +2635,7 @@ ra_ent(str_mon, 'M', KY_CL, MON_BNK, MON_IMGLOC, MON_LOC, MON_SIZ, MON_
ra_entsiz .equ $ - ra_tbl
#if (BIOS == BIOS_WBW)
#if (PLATFORM == PLT_S100)
ra_ent(str_smon, 'S', $FF, bid_cur, $8000, $8000, $0001, s100mon)
ra_ent(str_smon, '1', $FF, bid_cur, $8000, $8000, $0001, s100mon)
#endif
#endif
ra_ent(str_cpm22, 'C', KY_BK, CPM22_BNK, CPM22_IMGLOC, CPM_LOC, CPM_SIZ, CPM_ENT)

2
Source/ver.inc

@ -2,7 +2,7 @@
#DEFINE RMN 6
#DEFINE RUP 0
#DEFINE RTP 0
#DEFINE BIOSVER "3.6.0-dev.7"
#DEFINE BIOSVER "3.6.0-dev.8"
#define rmj RMJ
#define rmn RMN
#define rup RUP

2
Source/ver.lib

@ -3,5 +3,5 @@ rmn equ 6
rup equ 0
rtp equ 0
biosver macro
db "3.6.0-dev.7"
db "3.6.0-dev.8"
endm

Loading…
Cancel
Save