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 775fc35 commit 2a47e91Copy full SHA for 2a47e91
sys/nuinterp.spin
@@ -66,9 +66,13 @@ continue_startup
66
#ifdef ENABLE_DEBUG
67
DEBUG("Nucode interpreter running")
68
#endif
69
+ ' start with __sendptr == __recvptr == 0
70
+ mov __sendptr, #0
71
+ mov __recvptr, #0
72
+
73
' set up tos and nos
- rdlong tos, --ptra
- rdlong nos, --ptra
74
+ rdlong tos, --ptra
75
+ rdlong nos, --ptra
76
77
' user LUT code (various impl_XXX)
78
loc pa, #@IMPL_LUT
@@ -543,7 +547,10 @@ __super
543
547
res 1 ' $1e6
544
548
__reserved
545
549
res 1 ' $1e7
546
-
550
+__sendptr
551
+ res 1 ' $1e8
552
+__recvptr
553
+ res 1 ' $1e9
554
' reserved:
555
' $1e8 = __sendptr
556
' $1e9 = __recvptr
0 commit comments