HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mkdef.c
Go to the documentation of this file.
1 
2 #include <stdio.h>
3 #include <stdlib.h>
4 
5 int main(int argc, char *argv[])
6 {
7 
8 #if 0
9 #define PINA _SFR_IO8(0x00)
10 #define DDRA _SFR_IO8(0x01)
11 #define PORTA _SFR_IO8(0x02)
12 #endif
13 
14  int p,pin;
15  for(p='A';p<'H';++p)
16  {
17  for(pin=0;pin<8;++pin)
18  {
19  printf("#define GPIO_%c%d %d\n", p,pin, (p-'A')*8 + pin );
20  }
21  printf("\n");
22  }
23  printf("\n");
24 
25 }
printf
MEMSPACE int printf(const char *format,...)
main
int main(int argc, char *argv[])
Definition: mkdef.c:5