Files
JPEGView/Source/68020/Quantize.a
Aaron Giles 92bdb55672 JPEGView 3.3 for Macintosh
These are the sources for the final official release of JPEGView for the
Mac, back in 1994.
2015-02-05 00:18:10 -08:00

1 line
754 B
Plaintext

;*********************************************************/
;* This source code copyright (c) 1991-2001, Aaron Giles */
;* See the Read Me file for licensing information. */
;* Contact email: mac@aarongiles.com */
;*********************************************************/
machine mc68020
;
; Offsets of the various parameters in FillData
;
height equ 0
width equ 4
rowBytes equ 8
histogram equ 12
baseAdr equ 16
;
; void DoFillHistogram32(FillDataPtr theData)
;
DoFillHistogram32 proc export
link a6,#0
include 'FillHistogram32.a'
unlk a6
rts
endp
;
; void DoFillHistogram16(FillDataPtr theData)
;
DoFillHistogram16 proc export
link a6,#0
include 'FillHistogram16.a'
unlk a6
rts
endp
end