Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
52 lines
2.2 KiB
Plaintext
52 lines
2.2 KiB
Plaintext
Phar Lap Macro Assembler Version 4.1 Fri Jul 22 12:46:59 1994
|
|
|
|
Page 1-1
|
|
|
|
|
|
; outsw.asm - just does an outsw with W
|
|
atcom register conventions
|
|
;
|
|
|
|
assume cs:_text
|
|
|
|
00000000 _text segment para public use32 'code
|
|
'
|
|
|
|
public _outsw_
|
|
|
|
00000000 _outsw_ proc
|
|
; eax = address,
|
|
; edx = port (useful!)
|
|
; ebx = count
|
|
00000000 8B F0 mov esi,eax
|
|
00000002 8B CB mov ecx,ebx
|
|
00000004 F3/ 66| 6F rep outsw
|
|
|
|
00000007 C3 ret ; retu
|
|
rn to caller
|
|
|
|
_outsw_ endp
|
|
|
|
00000008 _text ends
|
|
|
|
end _outsw_
|
|
Phar Lap Macro Assembler Version 4.1 Fri Jul 22 12:46:59 1994
|
|
|
|
Symbols-1
|
|
|
|
|
|
GROUPS AND SEGMENTS
|
|
Name Size Use Align Combine Class
|
|
|
|
_text . . . . . . . . . . . . . 00000008 USE32 PARA PUBLIC code
|
|
|
|
PROCEDURES
|
|
Name Type Offset Scope Segment
|
|
|
|
_outsw_ . . . . . . . . . . . . N PROC 00000000 Public _text
|
|
|
|
|
|
2 Symbols
|
|
0 Warning Errors
|
|
0 Severe Errors
|