#pragma GCC optimize ("Og")
#include "ArduinoTrace.h"
void setup() {
// put your setup code here, to run once:
//------- process -------
//PORTB = 4;
asm(
"sbi 0x05,2" // B00000200
);
//DDRB = 4;
asm(
"sbi 0x04,2"
);
//-----------------------
}
void loop() {
// put your main code here, to run repeatedly:
}