Initial commit

This commit is contained in:
Gwen Gourevich
2021-10-27 10:34:18 +02:00
parent 43ad18eb04
commit c5f4f6ba25
199 changed files with 73169 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
;----------------------------------------------------------------------------
; S_SCREEN.ASM 386
; (c) Adeline 1993
;----------------------------------------------------------------------------
.386p
jumps
.model SMALL, SYSCALL
;----------------------------------------------------------------------------
.data
include svga.ash
ALIGN 4
Diff dd ?
;----------------------------------------------------------------------------
.code
public NoLanguage Cls
public NoLanguage CopyScreen
;----------------------------------------------------------------------------
; Cls()
;
Cls proc uses edi
mov edi, Log
xor eax, eax
mov ecx, 307200/4
rep stosd
ret
Cls endp
;----------------------------------------------------------------------------
; CopyScreen( UBYTE *src, UBYTE *dst )
;
; Attention:De mmoire … mmoire (pas sur vido ram)
;
CopyScreen proc uses esi edi,\
src:DWORD, dst:DWORD
mov esi, src
mov edi, dst
mov ecx, 307200/4
rep movsd
ret
CopyScreen endp
;----------------------------------------------------------------------------
;
; The
End