Skip to content

Commit

Permalink
Missing Comment Markers, Issue #435
Browse files Browse the repository at this point in the history
  • Loading branch information
wwarthen committed Oct 11, 2024
1 parent 6005472 commit 75e10b6
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions Source/HBIOS/hbios.asm
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@
;
#DEFINE HBIOS
;
; IF BUILDING FULL BOOT ROM, INCLUDE INFO MACROS
;
#IFDEF ROMBOOT
#DEFINE BNKINFO
#DEFINE MEMINFO
#DEFINE DEVINFO
#DEFINE SYSINFO
#ENDIF
;
; INCLUDE GENERIC STUFF
;
#INCLUDE "std.asm"
Expand All @@ -117,12 +126,6 @@ BOOTMODE .EQU 0
#IFDEF ROMBOOT
BOOTMODE .SET BM_ROMBOOT
MODCNT .SET MODCNT + 1
;
#DEFINE BNKINFO
#DEFINE MEMINFO
#DEFINE DEVINFO
#DEFINE SYSINFO
;
#ENDIF
;
#IFDEF APPBOOT
Expand Down Expand Up @@ -5243,8 +5246,8 @@ SYS_GETDIOFN:
; E: SLICE, ignored if media is not a hard disk
; RETURNS:
; A: STATUS, -6 (parameter out of range) - if Slice is invalid
Other errors Include ERR_NOUNIT, ERR_NOMEDIA,
If any error is raised the other return values are undefined
; Other errors Include ERR_NOUNIT, ERR_NOMEDIA,
; If any error is raised the other return values are undefined
; B: DEVICE ATTRIBUTES, as reported by DIODEVICE
; C: MEDIAID, including MID_HDNEW if hd1k partition is found
; DEHL: LBAOFFSET, of Slice if valid, 0 otherwise.
Expand Down

0 comments on commit 75e10b6

Please sign in to comment.