mirror of
https://github.com/aaronsgiles/JPEGView.git
synced 2026-03-11 06:41:45 +00:00
These are the sources for the final official release of JPEGView for the Mac, back in 1994.
1 line
754 B
Plaintext
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
|