浏览代码

+ test for last commit (44094dba2f96fcc6c252f9c42398b6740edb85a1)

florian 3 年之前
父节点
当前提交
680a5b94ff
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      tests/tbs/tb0692.pp

+ 14 - 0
tests/tbs/tb0692.pp

@@ -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.