mirror of
https://github.com/irmen/prog8.git
synced 2025-02-25 04:29:36 +00:00
12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
|
; Prog8 internal Math library routines - always included by the compiler
|
||
|
;
|
||
|
; Written by Irmen de Jong (irmen@razorvine.net) - license: GNU GPL 3.0
|
||
|
;
|
||
|
; indent format: TABS, size=8
|
||
|
|
||
|
%import c64lib
|
||
|
|
||
|
~ math {
|
||
|
%asminclude "library:math.asm", ""
|
||
|
}
|