Xemu [doxygen]  hyppo 0a42be3a057156924bc1b626a687bd6e27349c45 @ Sat 19 Mar 02:15:11 CET 2022
version.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <z80ex/z80ex.h>
3 
4 int main(void)
5 {
6  Z80EX_VERSION *ver;
7 
8  printf("z80ex version info:\n-------------------\n");
9 
10  ver = z80ex_get_version();
11 
12  printf("API revision: %d\nmajor version number: %d\nminor version number: %d\nrelease type: %s\n",
13  ver->API_revision, ver->major, ver->minor, ver->release_type);
14 
15  printf("full version number: %s\n", ver->as_string);
16 
17  return(0);
18 }
z80ex.h
main
int main(void)
Definition: version.c:4