mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 19:28:13 +02:00
15 lines
168 B
ObjectPascal
15 lines
168 B
ObjectPascal
{ %norun }
|
|
{ %cpu=avr }
|
|
program indirect_absolute_asm;
|
|
|
|
|
|
var
|
|
PORTB : byte absolute 1;
|
|
TXPORT: byte absolute PORTB;
|
|
|
|
begin
|
|
asm
|
|
sbi TXPORT+(-32), 1
|
|
end;
|
|
end.
|