Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.         noscript.c
  3.  
  4.         Empty function definitions to satisfy dZ80 when compiling it without script support
  5. */
  6.  
  7. #include <stdio.h>
  8.  
  9. #include "dissz80p.h"
  10.  
  11. int     dZ80_LoadConfiguration(DISZ80 *d, char *pConfigFile)
  12. {
  13.         (void)d;
  14.         (void)pConfigFile;
  15.         return DERR_SCRIPTING_NA;
  16. }
  17.  
  18. int     InitOpcodeTraps(DISZ80 *d)
  19. {
  20.         (void)d;
  21.         return DERR_NONE;
  22. }
  23.  
  24. int     ShutdownScripting(DISZ80 *d)
  25. {
  26.         (void)d;
  27.         return DERR_NONE;
  28. }
  29.  
  30.  
  31. int ExecPreTrap(DISZ80 *d)
  32. {
  33.         (void)d;
  34.         return 0;
  35. }
  36.  
  37. void ExecPostTrap(DISZ80 *d)
  38. {
  39.         (void)d;
  40.         return;
  41. }
  42.  
  43.