mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
Fixed missing name and semicolon in two device structs.
This commit is contained in:
parent
acf831658f
commit
7a1f5358df
@ -52,7 +52,7 @@ typedef struct {
|
||||
/* Driver header */
|
||||
char id[3]; /* Contains 0x65, 0x6d, 0x64 ("emd") */
|
||||
unsigned char version; /* Interface version */
|
||||
void* /* Library reference */
|
||||
void* libreference; /* Library reference */
|
||||
|
||||
/* Jump vectors. Note that these are not C callable */
|
||||
void* install; /* INSTALL routine */
|
||||
@ -75,6 +75,3 @@ extern em_drv_header* em_drv; /* Pointer to driver */
|
||||
|
||||
/* End of em-kernel.h */
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,7 @@ typedef struct {
|
||||
/* Driver header */
|
||||
char id[3]; /* Contains 0x6a, 0x6f, 0x79 ("joy") */
|
||||
unsigned char version; /* Interface version */
|
||||
void* /* Library reference */
|
||||
void* libreference; /* Library reference */
|
||||
|
||||
/* Jump vectors. Note that these are not C callable */
|
||||
void* install; /* INSTALL routine */
|
||||
|
Loading…
Reference in New Issue
Block a user