Add definition for RRET_X
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2021-01-03 07:01:52 +01:00
parent 624fad1319
commit a51287bcee
2 changed files with 7 additions and 1 deletions

View file

@ -29,4 +29,8 @@ Assembler and linker, kind-of 2-Pass. Quite loose token syntax defined in [Token
* *[asm/registers.asm](asm/registers.asm)*: Base named registers for platform.
* *[asm/api.asm](asm/api.asm)*: Registers used for some driver/switch manager operations.
* *[asm/stdlib.asm](asm/stdlib.asm)*: Standard library and other miscellaneous utilities.
* *[asm/init.asm](asm/init.asm)*: Sets up some required registers and other config.
* *[asm/init.asm](asm/init.asm)*: Sets up some required registers and other config.
## License
* BSD-3-Clause
* See [COPYING](COPYING) for the full license.

View file

@ -6,7 +6,9 @@
; Also used as single return value
.constant std_RETURN_VALUE MGMT_SCRATCH_0
.constant std_RETURN_VALUE_EXTRA MGMT_SCRATCH_1
.constant RRET std_RETURN_VALUE ;Alias
.constant RRET_X std_RETURN_VALUE_EXTRA ;Alias
.constant P0 std_PARAMETER_0
.constant P1 std_PARAMETER_1