Changeset 83 for trunk


Ignore:
Timestamp:
Apr 8, 2017, 12:26:20 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Show shutdown message (debugging) [v1.1.1-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/special/apm.asm

    r65 r83  
    2929
    3030APM_TurnOffComputer            Proc Near  Uses ax bx cx
     31
     32IFDEF       AUX_DEBUG
     33            pusha
     34            mov     si, offset $+5
     35            jmp     @F
     36            db      10,'>> System Shutdown <<',10,0
     37@@:         call    AuxIO_Print
     38            popa
     39ENDIF
     40
    3141   mov     ax, 5301h
    3242   xor     bx, bx
  • trunk/include/version.h

    r78 r83  
    3232#define     BLDLVL_YEAR             "2017"
    3333#define     BLDLVL_MONTH            "03"
    34 #define     BLDLVL_DAY              "19"
     34#define     BLDLVL_DAY              "20"
    3535// Build time
    3636//~ #define     BLDLVL_HOURS            "01"
  • trunk/include/version.inc

    r78 r83  
    7070AB_YEAR             EQU     2017h
    7171AB_MONTH            EQU     03h
    72 AB_DAY              EQU     19h
     72AB_DAY              EQU     20h
    7373
    7474; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note: See TracChangeset for help on using the changeset viewer.