]> git.the-white-hart.net Git - atmega/siggen.git/commitdiff
Add IO instructions to bytecode quickref
authoruser <none>
Sun, 13 Aug 2023 23:32:06 +0000 (18:32 -0500)
committeruser <none>
Sun, 13 Aug 2023 23:32:06 +0000 (18:32 -0500)
asm_2/tbc.inc

index 621a8a6f3c618f19dd017c031018f1bdcf48881a..feee370e7175329d6c48f5894bc99f14e9d98a4c 100644 (file)
 ; 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
 ; ------------------------------------------------------------------------------