From: Leo C Date: Mon, 1 Oct 2018 13:20:11 +0000 (+0200) Subject: bit operation optimizing X-Git-Tag: hexrel-6.9.0~17^2 X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/commitdiff_plain/dd1cc6f0b4a9cc2b49afb86c768813c087e46b4b?hp=eb49471efdeb6b317afeffa9bc05b25cb7d7a72c bit operation optimizing --- diff --git a/avr/main.c b/avr/main.c index 486e15c..486d992 100644 --- a/avr/main.c +++ b/avr/main.c @@ -84,7 +84,8 @@ void print_reset_reason(void) ISR(INT5_vect) { - Stat |= S_MSG_PENDING + S_IO_0X40; + Stat |= S_MSG_PENDING; + Stat |= S_IO_0X40; } ISR(INT6_vect)