home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCMania 64
/
PCMania CD64_1.iso
/
phy
/
phy006
/
lowlevel
/
sine.asm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1997-05-22
|
260 b
|
30 lines
.model tiny
.386
.code
org 100h
start:
mov al,13h
int 10h
mov bh,0a2h
mov ds,bx
drawsine:
sub cx,si
movsx di,ch
add si,di
mov [bx+di],bh
sub bx,320
jnc drawsine
;xor ah,ah
int 16h
ret
end start