qload: enabled autoquit
[trut64.git] / avr / dbuf.h
blob7380ef551132af6c0406fca35543ae8d67f31c52
1 /*
2 * Copyright (C) 2007 Anton Blad
3 * Copyright (C) 2007 Fredrik Kuivinen
4 * Copyright (C) 2007 Jakob Rosén
6 * This file is licensed under GPL v2.
7 */
9 #ifndef DBUF_H
10 #define DBUF_H
12 #include <stdint.h>
14 #define DBUF_SIZE 32
16 extern uint8_t debugbuf[DBUF_SIZE];
17 extern uint8_t debugi;
19 void dbuf_init();
20 void dbuf(uint8_t a);
21 void dbufp(uint8_t* p, uint8_t count);
22 void dbufn(uint8_t n, uint8_t a);
24 #endif