ibmpc: Remove inline of isr() to save space

This commit is contained in:
tmk 2022-02-07 21:44:33 +09:00
parent 4b42f5c1b7
commit 93274fac63
2 changed files with 2 additions and 2 deletions

View file

@ -204,7 +204,7 @@ void IBMPC::host_isr_clear(void)
ringbuf_reset();
}
inline void IBMPC::isr(void)
void IBMPC::isr(void)
{
uint8_t dbit;
dbit = IBMPC_DATA_PIN&(1<<data_bit);

View file

@ -118,7 +118,7 @@ class IBMPC
clock_mask(1 << clock), data_mask(1 << data) {
};
inline void isr(void) __attribute__((__always_inline__));
void isr(void);
private: