mirror of
https://github.com/Russell-S-Harper/COMMON.git
synced 2024-11-21 20:31:02 +00:00
11 lines
133 B
C
11 lines
133 B
C
#ifndef __ROM_H
|
|
#define __ROM_H
|
|
|
|
; ROM addresses
|
|
CMN_CD = $F800
|
|
CMN_DT = $FF00
|
|
|
|
; macros
|
|
#define CMN JSR CMN_CD
|
|
|
|
#endif /* __ROM_H */ |