home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Phoenix Heaven Sunny 2
/
APPARE2.BIN
/
oh_towns
/
his
/
source
/
hisl5.asm
< prev
next >
Wrap
Assembly Source File
|
1995-06-20
|
893b
|
30 lines
;*****************************************************************
;* *
;* 割り込み処理ライブラリ下請けプロシジャ *
;* *
;* ~ DSレジスタ読み出し ~ *
;* *
;* 1995 / 6 / 12 ちょもらんま *
;* *
;*****************************************************************
.386
assume cs:code
code segment public use32 'CODE'
;******************** DSレジスタ読み出し ******************
;unsigned short HIS_getDS ( void );
public HIS_getDS
HIS_getDS proc
xor eax,eax
mov ax,ds
ret
HIS_getDS endp
code ends
end