Database
graphprg.asc
Associated article: Graphics Programming
Tags: Database
_GRAPHICS PROGRAMMING COLUMN_
by Michael Abrash
[LISTING ONE]
; 386-specific fixed point routines.
; Tested with TASM 3.0.
ROUNDING_ON equ 1 ;1 for rounding, 0 for no rounding
;no rounding is faster, rounding is
; more accurate
ALIGNMENT equ 2
.model small
.386
.code
;=====================================================================
; Multiplies two fixed-point values ...


