Skip to content

Commit

Permalink
Fix RYFS accesses to the RAM disk
Browse files Browse the repository at this point in the history
  • Loading branch information
ry755 committed May 5, 2024
1 parent ef633ca commit fe3a7e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RYFS.asm
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
; ): INT;
check_disk:
cmp r0, 4
ifnz jmp check_disk_1
ifnz jmp check_disk_0
ifz call is_romdisk_available
ifnz jmp check_disk_fail
cmp r0, 4
ifz jmp check_disk_continue
check_disk_0:
cmp r0, 5
ifnz jmp check_disk_1
ifz call is_ramdisk_formatted
Expand Down

0 comments on commit fe3a7e3

Please sign in to comment.