Initial Source Code commit
Initial commit of original Tiberian Dawn and Red Alert source code converted to build as DLLs, and compatible with the release version of Command & Conquer Remastered.
This commit is contained in:
parent
ea8ecc76fa
commit
03416d24e1
1038 changed files with 629779 additions and 0 deletions
110
REDALERT/IPXPROT.ASM
Normal file
110
REDALERT/IPXPROT.ASM
Normal file
|
@ -0,0 +1,110 @@
|
|||
;
|
||||
; Copyright 2020 Electronic Arts Inc.
|
||||
;
|
||||
; TiberianDawn.DLL and RedAlert.dll and corresponding source code is free
|
||||
; software: you can redistribute it and/or modify it under the terms of
|
||||
; the GNU General Public License as published by the Free Software Foundation,
|
||||
; either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
; TiberianDawn.DLL and RedAlert.dll and corresponding source code is distributed
|
||||
; in the hope that it will be useful, but with permitted additional restrictions
|
||||
; under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
|
||||
; distributed with this program. You should have received a copy of the
|
||||
; GNU General Public License along with permitted additional restrictions
|
||||
; with this program. If not, see [https://github.com/electronicarts/CnC_Remastered_Collection]>.
|
||||
|
||||
|
||||
;!!!!!!!!!!!!!!!!!!! lock the allocation
|
||||
|
||||
;***************************************************************************
|
||||
;** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S **
|
||||
;***************************************************************************
|
||||
;* *
|
||||
;* Project Name : VQLIB *
|
||||
;* *
|
||||
;* File Name : HANDLER.ASM *
|
||||
;* *
|
||||
;* Programmer : Bill Randolph *
|
||||
;* *
|
||||
;* Start Date : April 7, 1995 *
|
||||
;* *
|
||||
;* Last Update : April 7, 1995 [BRR] *
|
||||
;* *
|
||||
;*-------------------------------------------------------------------------*
|
||||
;* Functions: *
|
||||
;* IPXHandler -- callback routine for IPX *
|
||||
;* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *
|
||||
;********************* Model & Processor Directives ************************
|
||||
IDEAL
|
||||
P386
|
||||
MODEL USE32 FLAT
|
||||
LOCALS ??
|
||||
|
||||
|
||||
;******************************** Includes *********************************
|
||||
|
||||
|
||||
;******************************** Defines ***********************************
|
||||
|
||||
|
||||
;****************************** Declarations ********************************
|
||||
GLOBAL C Get_RM_IPX_Address:NEAR
|
||||
GLOBAL C Get_RM_IPX_Size:NEAR
|
||||
|
||||
;********************************* Data ************************************
|
||||
DATASEG
|
||||
|
||||
LABEL RealBinStart BYTE
|
||||
include "obj\win32\ipxreal.ibn"
|
||||
LABEL RealBinEnd BYTE
|
||||
|
||||
;********************************* Data ************************************
|
||||
CODESEG
|
||||
|
||||
;***************************************************************************
|
||||
;* Get_RM_IPX_Address -- Return address of real mode code for copy. *
|
||||
;* *
|
||||
;* INPUT: *
|
||||
;* none *
|
||||
;* *
|
||||
;* OUTPUT: *
|
||||
;* VOID * to the address of the real mode IPX code *
|
||||
;* *
|
||||
;* PROTO: *
|
||||
;* VOID *Get_RM_IPX_Address(VOID); *
|
||||
;* *
|
||||
;* HISTORY: *
|
||||
;* 07/06/1994 SKB : Created. *
|
||||
;*=========================================================================*
|
||||
PROC Get_RM_IPX_Address C Near
|
||||
|
||||
mov eax, OFFSET RealBinStart
|
||||
ret
|
||||
|
||||
ENDP
|
||||
|
||||
;***************************************************************************
|
||||
;* Get_RM_IPX_Size -- return size of real mode IPX code. *
|
||||
;* *
|
||||
;* INPUT: *
|
||||
;* none *
|
||||
;* *
|
||||
;* OUTPUT: *
|
||||
;* LONG size of the real mode IPX code *
|
||||
;* *
|
||||
;* PROTO: *
|
||||
;* LONG Get_RM_IPX_Size(VOID); *
|
||||
;* *
|
||||
;* HISTORY: *
|
||||
;* 07/06/1994 SKB : Created. *
|
||||
;*=========================================================================*
|
||||
PROC Get_RM_IPX_Size C Near
|
||||
|
||||
mov eax, OFFSET RealBinEnd - OFFSET RealBinStart
|
||||
ret
|
||||
|
||||
ENDP
|
||||
|
||||
END
|
||||
|
||||
;************************** End of handler.asm *****************************
|
Reference in a new issue