Changeset 526 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus


Ignore:
Timestamp:
Mar 15, 2013, 1:38:58 AM (11 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • Update of the copyright notices to include the year 2013.
Location:
trunk/XTIDE_Universal_BIOS/Src/Menus
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenu.asm

    r505 r526  
    44;
    55; XTIDE Universal BIOS and Associated Tools
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
  • trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuEvent.asm

    r493 r526  
    33
    44;
    5 ; XTIDE Universal BIOS and Associated Tools 
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     5; XTIDE Universal BIOS and Associated Tools
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
     
    1010; the Free Software Foundation; either version 2 of the License, or
    1111; (at your option) any later version.
    12 ; 
     12;
    1313; This program is distributed in the hope that it will be useful,
    1414; but WITHOUT ANY WARRANTY; without even the implied warranty of
    1515; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16 ; GNU General Public License for more details.     
    17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html       
    18 ;       
     16; GNU General Public License for more details.
     17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     18;
    1919
    2020; Section containing code
     
    115115;       Does not matter
    116116;--------------------------------------------------------------------
    117 FirstEvent: 
     117FirstEvent:
    118118EventInitializeMenuinitFromSSBP:
    119119    ; Store default Menuitem (=default drive to boot from)
     
    128128    inc     ax                              ; extra entry for ROM Boot item
    129129    mov     [bp+MENUINIT.wItems], ax
    130                
     130
    131131    ; Store menu size
    132132    mov     WORD [bp+MENUINIT.wTitleAndInfoLines], BOOT_MENU_TITLE_AND_INFO_LINES
     
    161161EventItemHighlightedFromCX:
    162162    push    cx
    163     call    BootMenu_GetDriveToDXforMenuitemInCX       
    164     jnc     .noDriveSwap       
     163    call    BootMenu_GetDriveToDXforMenuitemInCX
     164    jnc     .noDriveSwap
    165165    call    DriveXlate_SetDriveToSwap
    166 .noDriveSwap:   
    167        
     166.noDriveSwap:
     167
    168168    ; Redraw changes in drive numbers
    169169    xor     ax, ax  ; Update first floppy drive (for translated drive number)
     
    179179    ret
    180180
    181        
     181
    182182;--------------------------------------------------------------------
    183183; EventItemSelectedFromCX
     
    211211    ; Fall to BootMenuEvent_Completed
    212212
    213        
     213
    214214;--------------------------------------------------------------------
    215215; BootMenuEvent_Completed
  • trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm

    r492 r526  
    44;
    55; XTIDE Universal BIOS and Associated Tools
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
     
    6969    add     al, 'A'                                 ; floppy drive letter (we always push this although
    7070                                                    ; the hard disks don't ever use it, but it does no harm)
    71 .ROMBoot:       
    72     push    ax                                     
     71.ROMBoot:
     72    push    ax
    7373
    7474    jmp     SHORT BootMenuPrint_RefreshInformation.FormatRelay
  • trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrintCfg.asm

    r491 r526  
    99;
    1010; XTIDE Universal BIOS and Associated Tools
    11 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     11; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    1212;
    1313; This program is free software; you can redistribute it and/or modify
  • trunk/XTIDE_Universal_BIOS/Src/Menus/DriveXlate.asm

    r505 r526  
    44;
    55; XTIDE Universal BIOS and Associated Tools
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
  • trunk/XTIDE_Universal_BIOS/Src/Menus/HotkeyBar.asm

    r505 r526  
    44;
    55; XTIDE Universal BIOS and Associated Tools
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.