]> git.sur5r.net Git - cc65/blob - samples/geos/inittab.c
goto.c warning fix for implicit truncation
[cc65] / samples / geos / inittab.c
1 /* Note:
2 ** This is just a sample piece of code that shows how to use some structs -
3 ** it may not even run.
4 */
5
6
7 #include <geos.h>
8
9
10 static const void myTab = {
11         0xd020, (char)2,
12         (char)0, (char)2,
13         0x4000, (char)5,
14         (char)0, (char)1, (char)2, (char)3, (char)4,
15         0x0000
16         };
17
18 int main (void)
19 {
20     InitRam(&myTab);
21 }
22