Changeset 68 for trunk/page00/boot.asm
- Timestamp:
- 11/09/09 21:57:30 (3 years ago)
- Files:
-
- 1 modified
-
trunk/page00/boot.asm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/page00/boot.asm
r66 r68 16 16 EXTERN _HandleUSBACablePluggedIn,_HandleUSBACableUnplugged,_HandleUSBBCablePluggedIn,_HandleUSBBCableUnplugged 17 17 EXTERN GetHexA,GetHexHL,CursorOff,RunIndicOn,SetFastSpeed,CanAlph,homescreenContextVectors,SetContrast,_PULLDOWNCHK 18 EXTERN savepartialWin 18 EXTERN savepartialWin,VPutS,VPutSCenter 19 19 20 20 ;0000h: … … 557 557 ld (curRow),hl 558 558 res appTextSave,(iy+appFlags) 559 call DisplayOS2Version 559 560 ld hl,sRAMCleared 560 561 call PutS 562 ld hl,0 563 ld (penCol),hl 561 564 ld hl,0 562 565 ld (curRow),hl … … 624 627 sRAMCleared: 625 628 DB "RAM cleared",0 629 DisplayOS2Version: 630 ld a,0Fh 631 ld (penRow),a 632 ld hl,sOS2Ver1 633 call VPutSCenter 634 ld a,0Fh+7 635 ld (penRow),a 636 ld hl,sOS2Ver2 637 jr VPutSCenter 638 sOS2Ver1: 639 DB "OS2 v",OS2_VERSION_STRING,0 640 sOS2Ver2: 641 DB "Build ",OS2_VERSION_BUILD_STR,0 626 642 627 643 CallcxMain:
