We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba74611 commit 3be7dbcCopy full SHA for 3be7dbc
src/00/jumptable.config
@@ -191,3 +191,6 @@
191
streamWriteByte
192
streamWriteWord
193
streamWriteBuffer
194
+
195
+# Miscellaneous
196
+ getBootPage
src/00/util.asm
@@ -185,6 +185,14 @@ getBatteryLevel:
185
ld b, 255
186
ret
187
188
+;; getBootPage [Miscellaneous]
189
+;; Gets the boot page for this calculator.
190
+;; Outputs:
+;; A: Boot page
+getBootPage:
+ ld a, bootPage
+ ret
;; getBootCodeVersionString [Miscellaneous]
197
;; Gets the version string from the device's boot code.
198
;; Outputs:
0 commit comments