Changeset 162


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

Removed some ancient debugging stuff [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:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/airboot.asm

    r145 r162  
    14771477                ; Select default partition and boot system...
    14781478                call    PASSWORD_AskSystemPwd
    1479 
    1480                 ;call    VideoIO_DBG_WriteString2
    14811479
    14821480                mov     al, Menu_EntryDefault
  • trunk/bootcode/regular/bootmenu.asm

    r155 r162  
    288288   mov     al, TextChar_WinRep5
    289289   call    VideoIO_PrintSingleChar
     290
    290291   ; HelpWindow done...
    291 
    292 
    293    ; Rousseau: Debug Stuff, put here after building Main Menu
    294    ;call    VideoIO_DBG_WriteString
    295    ;call    VideoIO_DBG_WriteString2
    296292
    297293   ret
     
    10571053
    10581054    BME_MainLoop:
    1059 
    1060         ;call    VideoIO_DBG_WriteString2    ; Rousseau
    10611055
    10621056        test    byte ptr [TimedBootEnable], 1
  • trunk/bootcode/regular/videoio.asm

    r117 r162  
    757757VideoIO_PrintBuildInfo  EndP
    758758
    759 ;VideoIO_DBG_WriteString         Proc Near   Uses ax bx cx dx si es di
    760 ;   mov   ch, [CFG_Partitions]                                                    ; y
    761 ;   add   ch, 7
    762 ;   add   ch, [CFG_IncludeFloppy]
    763 ;   push cx
    764 ;   mov   cl, 1                                                                   ; x
    765 ;   call  VideoIO_Locate
    766 ;   mov   ch, 15                                                                  ; fgc
    767 ;   mov   cl, 0                                                                   ; bgc
    768 ;   call  VideoIO_Color
    769 ;   mov   si, offset ShowBootLog
    770 ;   call  VideoIO_Print
    771 ;   pop cx
    772 ;   inc   ch
    773759
    774760;   ;mov   ch, 21                                                                 ; y
  • trunk/bootcode/setup/main.asm

    r96 r162  
    7979   ; Setup PartitionPointers-Table...again (needed when re-entering setup)
    8080   ;call    PART_CalculateStraightPartPointers
    81    ;call    VideoIO_DBG_WriteString
    8281   ; Rousseau: end added
    83 
    84 
    8582
    8683   test    byte ptr [CFG_AutoEnterSetup], 1
  • trunk/include/version.h

    r160 r162  
    3232#define     BLDLVL_YEAR             "2017"
    3333#define     BLDLVL_MONTH            "04"
    34 #define     BLDLVL_DAY              "06"
     34#define     BLDLVL_DAY              "07"
    3535// Build time
    3636//~ #define     BLDLVL_HOURS            "01"
  • trunk/include/version.inc

    r160 r162  
    7070AB_YEAR             EQU     2017h
    7171AB_MONTH            EQU     04h
    72 AB_DAY              EQU     06h
     72AB_DAY              EQU     07h
    7373
    7474; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note: See TracChangeset for help on using the changeset viewer.