mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-16 03:29:58 +00:00
32 lines
699 B
Plaintext
32 lines
699 B
Plaintext
|
;
|
|||
|
; File: i2cEqu.a
|
|||
|
;
|
|||
|
; Contains: Equates used by i2c.a file
|
|||
|
;
|
|||
|
; Written by:
|
|||
|
;
|
|||
|
; Copyright: <09> 1993-1994 by Apple Computer, Inc., all rights reserved.
|
|||
|
;
|
|||
|
; Change History (most recent first):
|
|||
|
;
|
|||
|
; <SM2> 1/5/94 kc Fix missing Endif from last checkin.
|
|||
|
; <1> 12/14/93 PN first checked in
|
|||
|
; <K2> 5/20/93 EH Fixed up the comments.
|
|||
|
; <1> 5/20/93 EH first checked in
|
|||
|
;
|
|||
|
;
|
|||
|
|
|||
|
IF &TYPE('__i2cEqu__') = 'UNDEFINED' THEN
|
|||
|
__i2cEqu__ SET 1
|
|||
|
Endif
|
|||
|
|
|||
|
; Blackbird Error Codes
|
|||
|
WereLosers equ -1 ; totally hosed, punt
|
|||
|
badAck equ -2 ; didn't get ack, try again
|
|||
|
|
|||
|
|
|||
|
; Blackbird Misc Equates
|
|||
|
retryCnt EQU 10 ; retry count for getting ID
|
|||
|
ENetIDLen equ 8 ; number of bytes in ID
|
|||
|
|