Best Of The Best GFX Commands!


The List!

Here's the list of all the fastest graphics commands sent in so far. I've not changed any of the code in anyway shape or form. All entries are as is.


Fastest PutPixel:

BuG:

procedure putpixel(x,y:word;color:byte;page:word);assembler;
asm
mov ax, [y]
mov di, ax
shl di, 8
shl ax, 6
add di, ax
add di, [x]
mov es, [page]
mov al, [color]
mov es:[di], al
end;

Total Clock Ticks: 13

 

Fastest Line:

Total Clock Ticks: N/A

 

Fastest Circle:

Total Clock Ticks: N/A


Send In Yours!

Name:

E-Mail Address:

Comments:

Do mind if we use your code? Yes No



Site was created 2 March, 1998 by WILL.