rdx.c
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:2k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* rdx.c RDOFF Object File loader program
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8. /* note: most of the actual work of this program is done by the modules
  9.    "rdfload.c", which loads and relocates the object file, and by "rdoff.c",
  10.    which contains general purpose routines to manipulate RDOFF object
  11.    files. You can use these files in your own program to load RDOFF objects
  12.    and execute the code in them in a similar way to what is shown here. */
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include "rdfload.h"
  16. #include "rdoff.h"
  17. #include "symtab.h"
  18. typedef int (*main_fn) (int,char**); /* Main function prototype */
  19. int main(int argc, char **argv)
  20. {
  21.     rdfmodule  * m;
  22.     main_fn code;
  23.     symtabEnt * s;
  24.     if (argc < 2)
  25.     {
  26.   puts("usage: rdx <rdoff-executable> [params]n");
  27. exit(255);
  28.     }
  29.     m = rdfload(argv[1]);
  30.     if (! m)
  31.     {
  32. rdfperror("rdx",argv[1]);
  33. exit(255);
  34.     }
  35.     rdf_relocate(m); /* in this instance, the default relocation
  36.    values will work fine, but they may need changing
  37.    in other cases... */
  38.     s = symtabFind(m->symtab, "_main");
  39.     if (! s)
  40.     {
  41. fprintf(stderr,"rdx: could not find symbol '_main' in '%s'n",argv[1]);
  42. exit(255);
  43.     }
  44.     code = (main_fn) s->offset;
  45.     argv++, argc--; /* remove 'rdx' from command line */
  46.     return code(argc,argv); /* execute */
  47. }