mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +00:00
81e467cdc2
- No complex shell logic. - "Source file shadowing" for all targets via vpath. - Dependency handling. - True incremental build. - Don't write into source directories. - Easy cleanup by just removing 'wrk'.
15 lines
237 B
ArmAsm
15 lines
237 B
ArmAsm
;
|
|
; Address of the static standard mouse driver
|
|
;
|
|
; Oliver Schmidt, 2012-11-01
|
|
;
|
|
; const void mouse_static_stddrv[];
|
|
;
|
|
|
|
.export _mouse_static_stddrv
|
|
.import _c128_1351_mou
|
|
|
|
.rodata
|
|
|
|
_mouse_static_stddrv := _c128_1351_mou
|