1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/src/worker/lib/vectrex/stdlib.h
2020-06-09 13:11:37 -05:00

14 lines
411 B
C

#ifndef __vectrex_stdlib_h__
#define __vectrex_stdlib_h__
/**
* Most stdlib functions are supported on the Vectrex, except those that imply having a keyboard and console:
* printf, putsr, putchar, readword, readline.
* Also delay is not implemented as it does not seem to make much sense to have a delay function on the Vectrex.
*/
#include "vectrex.h"
#include "cmoc.h"
#endif // __vectrex_stdlib_h__