From 532a6b00e08a85dd6a5fab4cfb7d83cf79b9257e Mon Sep 17 00:00:00 2001 From: Graeme Winter Date: Fri, 6 Jan 2023 18:31:42 +0000 Subject: [PATCH] Typo --- interp/interp.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interp/interp.py b/interp/interp.py index 6de5877..182af0d 100644 --- a/interp/interp.py +++ b/interp/interp.py @@ -9,10 +9,10 @@ from machine import mem32 SIO_BASE = 0xD0000000 # INTERP0 registers -INTERP0_ACCUM0 = 0xD0000000 + 0x80 -INTERP0_BASE0 = 0xD0000000 + 0x88 -INTERP0_POP_LANE0 = 0xD0000000 + 0x94 -INTERP0_CTRL_LANE0 = 0xD0000000 + 0xAC +INTERP0_ACCUM0 = SIO_BASE + 0x80 +INTERP0_BASE0 = SIO_BASE + 0x88 +INTERP0_POP_LANE0 = SIO_BASE + 0x94 +INTERP0_CTRL_LANE0 = SIO_BASE + 0xAC # initialise lane 0 on interp: set that we are using all 32 bits mem32[INTERP0_CTRL_LANE0] = 0x1F << 10