Compare commits

..
2 Commits
Author SHA1 Message Date
ShatteredMINT dbd4865f14 change stack start 2026-09-02 11:31:52 +02:00
ShatteredMINT 8f1b970a2f remove mention of non existent file 2026-09-02 11:31:33 +02:00
+1 -2
View File
@@ -4,7 +4,6 @@ This is a standard library for symphony.
It is both intended as a practical toolkit to develop more complex software as well as a teaching resource. It is both intended as a practical toolkit to develop more complex software as well as a teaching resource.
If you just want to use the standard library [[stdlib.asm]] is your main header, include it after your code. If you just want to use the standard library [[stdlib.asm]] is your main header, include it after your code.
You'll also need to include globals.asm in the first line of your main assembly file.
If you are using it as a learning resource have a look at the [teaching folder](teaching). If you are using it as a learning resource have a look at the [teaching folder](teaching).
@@ -34,7 +33,7 @@ This reduces the amount of argument registers to 6 and all arguments above that
This register points at the highest available address for results, with the 8th result being stored there, the 9th below it and so on. This register points at the highest available address for results, with the 8th result being stored there, the 9th below it and so on.
### Stack ### Stack
Grows downwards from top of memory. Grows downwards from 0xXXFE_0000 (so top of memory -0x1_0000).
### Types ### Types