diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-18 09:20:01 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-18 09:20:01 +0200 |
| commit | a6184be79e3918764d5e683796afbd8e8ccba018 (patch) | |
| tree | 870a5506efad410c89524bbeb740fb44974bf1da /kernel/fifo.c | |
| parent | fe79552d9fcfd60d8c2bb828c6b93cf471ef7b75 (diff) | |
fifo through ringbuffer(stdin) and vt52(stdout) finally working!
Diffstat (limited to 'kernel/fifo.c')
| -rw-r--r-- | kernel/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fifo.c b/kernel/fifo.c index abd6c46..314e9ff 100644 --- a/kernel/fifo.c +++ b/kernel/fifo.c @@ -5,7 +5,7 @@ bool fifo_put(fifo* f,uint8_t c) return f->put(f->data,c); } -uint8_t fifo_get(fifo* f) +volatile uint8_t fifo_get(fifo* f) { return f->get(f->data); } |
