mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 19:31:36 +00:00
version 10.4.1
This commit is contained in:
parent
46b94c17d6
commit
585f6ffc9b
@ -1,6 +1,5 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-atari.p8
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-c128.p8
|
||||
|
@ -1,12 +1,10 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-c64.p8
|
||||
Compiler target: c64
|
||||
|
||||
|
||||
LIBRARY MODULE NAME: conv
|
||||
-------------------------
|
||||
conv {
|
||||
@ -471,6 +469,9 @@ cx16 {
|
||||
}
|
||||
|
||||
|
||||
LIBRARY MODULE NAME: shared_cbm_textio_functions
|
||||
------------------------------------------------
|
||||
|
||||
LIBRARY MODULE NAME: diskio
|
||||
---------------------------
|
||||
diskio {
|
||||
@ -549,6 +550,9 @@ string {
|
||||
}
|
||||
|
||||
|
||||
LIBRARY MODULE NAME: shared_string_functions
|
||||
--------------------------------------------
|
||||
|
||||
LIBRARY MODULE NAME: floats
|
||||
---------------------------
|
||||
floats {
|
||||
@ -582,6 +586,7 @@ floats {
|
||||
FREADS32 () -> clobbers (A,X,Y)
|
||||
FREADSA (byte value @A) -> clobbers (A,X,Y) = $bc3c
|
||||
FREADSTR (ubyte length @A) -> clobbers (A,X,Y) = $b7b5
|
||||
FREADU24AXY (ubyte lo @A, ubyte mid @X, ubyte hi @Y) -> clobbers (A,X,Y) -> float @FAC1
|
||||
FREADUS32 () -> clobbers (A,X,Y)
|
||||
FREADUY (ubyte value @Y) -> clobbers (A,X,Y) = $b3a2
|
||||
FSUB (uword mflpt @AY) -> clobbers (A,X,Y) = $b850
|
||||
@ -636,6 +641,7 @@ floats {
|
||||
secant (float value) -> float
|
||||
sin (float angle) -> float
|
||||
tan (float value) -> float
|
||||
time () -> float @FAC1
|
||||
tostr (float value @FAC1) -> clobbers (X) -> str @AY
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-cx16.p8
|
||||
@ -835,6 +834,7 @@ floats {
|
||||
FPWR (uword mflpt @AY) -> clobbers (A,X,Y) = $fe36
|
||||
FPWRT () -> clobbers (A,X,Y) = $fe39
|
||||
FREADSA (byte value @A) -> clobbers (A,X,Y)
|
||||
FREADU24AXY (ubyte lo @A, ubyte mid @X, ubyte hi @Y) -> clobbers (A,X,Y) -> float @FAC1
|
||||
FREADUY (ubyte value @Y)
|
||||
FSUB (uword mflpt @AY) -> clobbers (A,X,Y) = $fe12
|
||||
FSUBT () -> clobbers (A,X,Y) = $fe15
|
||||
@ -893,6 +893,7 @@ floats {
|
||||
secant (float value) -> float
|
||||
sin (float angle) -> float
|
||||
tan (float value) -> float
|
||||
time () -> float @FAC1
|
||||
tostr (float value @FAC1) -> clobbers (X) -> str @AY
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-pet32.p8
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
Prog8 compiler v10.5 by Irmen de Jong (irmen@razorvine.net)
|
||||
Prerelease version from git commit 2954f5f0 in branch master
|
||||
Prog8 compiler v10.4.1 by Irmen de Jong (irmen@razorvine.net)
|
||||
This software is licensed under the GNU GPL 3.0, see https://www.gnu.org/licenses/gpl.html
|
||||
|
||||
Compiling program import-all-virtual.p8
|
||||
|
@ -5,4 +5,4 @@ org.gradle.daemon=true
|
||||
kotlin.code.style=official
|
||||
javaVersion=11
|
||||
kotlinVersion=2.0.20
|
||||
version=10.5-SNAPSHOT
|
||||
version=10.4.1
|
||||
|
Loading…
Reference in New Issue
Block a user