From 81a525a856bcc41b01c67998ac0eb6b1568892a1 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 13 Aug 2023 18:32:06 -0500 Subject: [PATCH] Add IO instructions to bytecode quickref --- asm_2/tbc.inc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/asm_2/tbc.inc b/asm_2/tbc.inc index 621a8a6..feee370 100644 --- a/asm_2/tbc.inc +++ b/asm_2/tbc.inc @@ -72,6 +72,13 @@ ; T_EXT label Jump to label and execute as AVR assembly ; (return address in r24:r25) ; +; T_SPI vx, y SPI transfer y bytes at [VX] +; T_MFT vx, y Move value from countdown timer y +; T_MTT vx, y Move value to countdown timer y +; T_DIN vx, y Digital input from pin y, only modifies LSB of VX +; T_DOUT vx, y Digital output to pin y, only reads LSB of VX +; T_AIN vx, y Analog input from channel y +; T_AOUT vx, y Analog output to PWM channel y ; ------------------------------------------------------------------------------ -- 2.43.0