Phase 6: P-Code-Bibliotheken und Linker abschließen, Cross-Buildplan festhalten

This commit is contained in:
2026-09-07 16:06:23 +02:00
parent 60d37ec79d
commit 25176947ba
33 changed files with 2416 additions and 203 deletions

View File

@@ -0,0 +1,17 @@
CONST WIDTH=2
TYPE Record
value AS LONG
text AS STRING * 4
END TYPE
COMMON SHARED shared&
DIM SHARED state&
DATA 7
SUB Work(a&(), r AS Record, n&)
state&=state&+1
shared&=shared&+1
READ a&(1)
r.value=r.value+n&
r.text="TB"
n&=9
PRINT state&
END SUB

Binary file not shown.