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

53
SOURCES/MCGA.ASM Normal file
View File

@@ -0,0 +1,53 @@
;----------------------------------------------------------------------------
;
;' MCGA.ASM 386
;' (c) Adeline 1994
;
;----------------------------------------------------------------------------
.386P
.model SMALL, SYSCALL
JUMPS
;----------------------------------------------------------------------------
.data
;----------------------------------------------------------------------------
include \projet\lib386\lib_svga\svga.ash
;----------------------------------------------------------------------------
public NoLanguage Mcga_Cls
public NoLanguage Mcga_Flip
.code
;//--------------------------------------------------------------------------
Mcga_Cls proc uses edi
xor eax, eax
mov edi, Log
mov ecx, 64000/4
rep stosd
ret
Mcga_Cls endp
;//--------------------------------------------------------------------------
Mcga_Flip proc uses esi edi
mov esi, Log
mov edi, Phys
mov ecx, 64000/4
rep movsd
ret
Mcga_Flip endp
;----------------------------------------------------------------------------
; The
End