Subversion Repositories pentevo

Rev

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

  1. #pragma once
  2.  
  3. unsigned char *editam(unsigned addr);
  4.  
  5. __inline unsigned char editrm(unsigned addr)
  6. {
  7.    unsigned char *ptr = editam(addr);
  8.    return ptr? *ptr : 0;
  9. }
  10.  
  11. unsigned memadr(unsigned addr);
  12.  
  13. void mleft();
  14. void mright();
  15. void mup();
  16. void mdown();
  17. void mpgdn();
  18. void mpgup();
  19. void mswitch();
  20. void mstl();
  21. void mendl();
  22. void mtext();
  23. void mcode();
  24. void mgoto();
  25. void mmodemem();
  26. void mmodephys();
  27. void mmodelog();
  28. void mdiskgo();
  29. void menter();          // [NS]
  30.  
  31. void mpc();
  32. void msp();
  33. void mbc();
  34. void mde();
  35. void mhl();
  36. void mix();
  37. void miy();
  38. void showmem();
  39. char dispatch_mem();
  40.  
  41. void mbpx();                                    // [NS]
  42. void mbpr();                                    // [NS]
  43. void mbpw();                                    // [NS]
  44.  
  45.  
  46.