Changeset 55 for trunk/page00/home.asm

Show
Ignore:
Timestamp:
10/11/09 23:33:32 (3 years ago)
Author:
brandonlw
Message:

We now have a basic menu system and the beginnings of an oncalc hex editor
I also was forced to duplicate PutMap? instead of using the boot code hack, since it doesn't support inverse text
Progress...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/page00/home.asm

    r48 r55  
    55 
    66 PUBLIC homescreenContextVectors,InitHomescreenContext 
    7  EXTERN DispHexA,DispHexHL,GetHexA,GetHexHL,AppInit 
     7 EXTERN DispHexA,DispHexHL,GetHexA,GetHexHL,AppInit,RestoreTextShadow 
    88 
    99InitHomescreenContext: 
     
    2222       ld hl,homescreenContextVectors 
    2323       call AppInit 
    24        B_CALL ClrLCDFull 
     24       call RestoreTextShadow 
     25       set appTextSave,(iy+appFlags) 
     26       set curAble,(iy+curFlags) 
     27       set curOn,(iy+curFlags) 
     28       ld hl,menuCurrent 
     29       ld (hl),0 
    2530       ret 
    2631