Subversion Repositories NedoOS

Rev

Rev 2246 | Blame | Compare with Previous | Last modification | View Log | Download

  1. #include <stdint.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #include "zetaZ80/Z80_lite.h"
  7.  
  8. #include "z80-wrap.h"
  9.  
  10. #define MAX_Z80_CLOCKS (50000000000ULL)
  11.  
  12. struct type_detect type_list[] =
  13. {
  14.         {"--cpm",    SYS_CPM},
  15.         {"--nedoos", SYS_NEDOOS},
  16.         {"--zx",     SYS_ZX},
  17.         {NULL,       0}
  18. };
  19.  
  20. int main(int argc, char ** argv)
  21. {
  22.         int sys_type = (-1);
  23.  
  24.         if( argc>1 )
  25.         {
  26.                 struct type_detect * ptr = type_list;
  27.  
  28.                 while( ptr->argument_name )
  29.                 {
  30.                         if( !strcmp(ptr->argument_name,argv[1]) )
  31.                         {
  32.                                 sys_type = ptr->sys_type;
  33.                         }
  34.  
  35.                         ptr++;
  36.                 }
  37.         }
  38.  
  39.         if( argc!=3 || sys_type<=0 )
  40.         {
  41.                 fprintf(stderr,"There must be exactly two arguments!\n");
  42.                 fprintf(stderr," First: either --cpm, --zx or --nedoos\n");
  43.                 fprintf(stderr," Second: filename to load\n");
  44.                 exit(1);
  45.         }
  46.  
  47.         struct z80_context * z80 = z80_init(argv[2],sys_type);
  48.         if( !z80 )
  49.         {
  50.                 fprintf(stderr,"Can't init z80 struct!\n");
  51.                 exit(1);
  52.         }
  53.  
  54.         z80_exec(z80,MAX_Z80_CLOCKS);
  55.  
  56.         fprintf(stderr,"Max clocks of %llu exceeded, probably a lock-up!",MAX_Z80_CLOCKS);
  57.         exit(1);
  58.  
  59.         return 0;
  60. }
  61.  
  62.