From: user Date: Sun, 13 Aug 2023 23:32:06 +0000 (-0500) Subject: Add IO instructions to bytecode quickref X-Git-Url: https://git.the-white-hart.net/?a=commitdiff_plain;h=81a525a856bcc41b01c67998ac0eb6b1568892a1;p=atmega%2Fsiggen.git Add IO instructions to bytecode quickref --- 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 ; ------------------------------------------------------------------------------