Changeset 60 for trunk/page00/home.asm

Show
Ignore:
Timestamp:
11/08/09 18:23:13 (3 years ago)
Author:
brandonlw
Message:

More attempts to stabilize dual booting

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/page00/home.asm

    r57 r60  
    5151       cp kGraph 
    5252       jr z,killOtherOS 
     53       cp kWindow 
     54       jr z,writeByte 
    5355       cp kYequ 
    5456       ret nz 
     
    9092       B_CALL EraseFlashPage 
    9193       ret 
     94writeByte: 
     95       B_CALL UnlockFlash 
     96       ld hl,(curRow) 
     97       push hl 
     98       ld hl,0 
     99       ld (curRow),hl 
     100       call GetHexA 
     101       push af 
     102       call GetHexHL 
     103       push hl 
     104       call GetHexA 
     105       ld b,a 
     106       pop de 
     107       pop af 
     108       B_CALL WriteAByte 
     109       pop hl 
     110       ld (curRow),hl 
     111       ret 
    92112