-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Minor issue in recent updates to Boot Loader broke Fuzix loading. This is corrected.
- Loading branch information
Showing
5 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ | |
; REBOOT [/C] [/W] [/?] | ||
; ex: REBOOT Display version and usage | ||
; REBOOT /? Display version and usage | ||
; REBOOT /C Cold boot RomWBW system | ||
; REBOOT /W Warm boot RomWBW system | ||
; REBOOT /C Cold boot RomWBW system | ||
; REBOOT /W Warm boot RomWBW system | ||
; | ||
; Operation: | ||
; Cold or warm boots a RomWBW system depending on the user option selected. | ||
|
@@ -37,7 +37,7 @@ | |
#include "../../HBIOS/hbios.inc" | ||
|
||
;#include "ver.inc" ; Used for testing purposes.... | ||
;#include "hbios.inc" ; ....during code development | ||
;#include "hbios.inc" ; ....during code development | ||
; | ||
;=============================================================================== | ||
; | ||
|
@@ -128,11 +128,11 @@ main: | |
ld ix,$0081 ; point to start of parm area (past length byte) | ||
call nonblank ; skip to next non-blank char | ||
cp '/' ; option prefix? | ||
jr nz,usage ; display help info & exit if nothing to do | ||
; | ||
jr nz,usage ; display help info & exit if nothing to do | ||
; | ||
; process any options | ||
inc ix ; fetch next character and process | ||
ld a,(ix) | ||
ld a,(ix) | ||
call upcase ; ensure it's an upper case character | ||
cp 'C' ; if it's a 'C' then | ||
jr z,cboot ; do a cold boot. | ||
|
@@ -271,7 +271,7 @@ upcase: | |
;=============================================================================== | ||
; | ||
str_banner .db "RomWBW Reboot Utility, Version 1.0, 12-Oct-2024\r\n" | ||
.db " Wayne Warthen ([email protected]) & MartinR",0 | ||
.db " Wayne Warthen ([email protected]) & MartinR",0 | ||
; | ||
str_warmboot .db "\r\n\r\nWarm booting...\r\n",0 | ||
str_coldboot .db "\r\n\r\nCold booting...\r\n",0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ rmn equ 5 | |
rup equ 0 | ||
rtp equ 0 | ||
biosver macro | ||
db "3.5.0-dev.91" | ||
db "3.5.0-dev.92" | ||
endm |