+ test for last commit (44094dba2f)

This commit is contained in:
florian 2022-02-14 22:54:36 +01:00
parent 44094dba2f
commit 680a5b94ff

14
tests/tbs/tb0692.pp Normal file
View File

@ -0,0 +1,14 @@
{ %norun }
{ %cpu=avr }
program indirect_absolute_asm;
var
PORTB : byte absolute 1;
TXPORT: byte absolute PORTB;
begin
asm
sbi TXPORT+(-32), 1
end;
end.