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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Device/Serial/SerialCommand.asm

    r490 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.     
     16; GNU General Public License for more details.
    1717; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    18 ;       
     18;
    1919
    2020; Section containing code
     
    2222
    2323%define SERIALSERVER_AH_ALREADY_HAS_COMMAND_BYTE
    24 %define SERIALSERVER_NO_ZERO_SECTOR_COUNTS     
     24%define SERIALSERVER_NO_ZERO_SECTOR_COUNTS
    2525
    2626;--------------------------------------------------------------------
     
    6161
    6262.readOrWrite:
    63         mov     [bp+IDEPACK.bFeatures],ah       ; store protocol command       
     63        mov     [bp+IDEPACK.bFeatures],ah       ; store protocol command
    6464        call    IdeTransfer_NormalizePointerInESSI
    65                
     65
    6666        mov     dx, [di+DPT_SERIAL.wSerialPortAndBaud]
    6767
    6868; fall through to SerialCommand_FallThroughToSerialServer_SendReceive
    69        
     69
    7070ALIGN JUMP_ALIGN
    71 SerialCommand_FallThroughToSerialServer_SendReceive:       
     71SerialCommand_FallThroughToSerialServer_SendReceive:
    7272
    7373; fall through to SerialServer_SendReceive
    74        
     74
    7575%include "SerialServer.asm"
    7676
    77 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS       
     77%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
    7878    %if SerialCommand_FallThroughToSerialServer_SendReceive <> SerialServer_SendReceive
    7979        %error "SerialServer_SendReceive must be the first routine at the top of SerialServer.asm in the Assembly_Library"
     
    8181%endif
    8282
    83 ALIGN JUMP_ALIGN       
    84 SerialCommand_ReturnError:     
     83ALIGN JUMP_ALIGN
     84SerialCommand_ReturnError:
    8585        stc
    86         ret     
     86        ret
    8787
    8888;--------------------------------------------------------------------
     
    147147        mov     dx,[cs:bp+IDEVARS.wSerialPortAndBaud]
    148148        xor     ax,ax
    149        
     149
    150150        push    si
    151151        call    FindDPT_ToDSDIforSerialDevice
     
    182182
    183183; fall through to SerialCommand_FallThroughToSerialServerScan_ScanForServer
    184        
     184
    185185ALIGN JUMP_ALIGN
    186186SerialCommand_FallThroughToSerialServerScan_ScanForServer:
    187187
    188188; fall through to SerialServerScan_ScanForServer
    189        
     189
    190190%include "SerialServerScan.asm"
    191191
    192 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS               
     192%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
    193193    %if SerialCommand_FallThroughToSerialServerScan_ScanForServer <> SerialServerScan_ScanForServer
    194194        %error "SerialServerScan_ScanForServer must be the first routine at the top of SerialServerScan.asm in the Assembly_Library"
Note: See TracChangeset for help on using the changeset viewer.