Coding contests >> 0x10 byte demo :-)
Posted by robost86 on 18:56:00 03-05-2002
This is a modified hybrid of one of my 0x20 demos, and geqo's 0x20 demo.


org 0x100
mov al,0x13
int 0x10
mov ah,0xa0
mov ds,ax
main:
adc byte[di],bl
adc byte[bx],bl
inc bx
dec di
jmp short main

Posted by nonama on 19:10:00 03-05-2002
it lollipops, j/k i dont think its a nice effect.
but try this and you will know what is realy ugly effect.

org 0x100
mov al, 0x13
int 0x10

mov ah, 0xa0
mov ds, ax

some:
add byte [di], bl
sub byte [bx], bl

dec bx
dec di

jmp short some