Subversion Repositories pentevo

Rev

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

  1. /* codenone.c */
  2. /*****************************************************************************/
  3. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  4. /*                                                                           */
  5. /* AS                                                                        */
  6. /*                                                                           */
  7. /* Dummy Target                                                              */
  8. /*                                                                           */
  9. /*****************************************************************************/
  10.  
  11. #include "stdinc.h"
  12. #include <string.h>
  13.  
  14. #include "asmdef.h"
  15. #include "asmsub.h"
  16. #include "errmsg.h"
  17.  
  18. #include "codenone.h"
  19.  
  20. LargeWord none_target_seglimit;
  21.  
  22. /*-------------------------------------------------------------------------*/
  23.  
  24. static void make_code_none(void)
  25. {
  26.   if (Memo("")) return;
  27.  
  28.   WrError(ErrNum_NoTarget);
  29. }
  30.  
  31. static Boolean is_def_none(void)
  32. {
  33.   return False;
  34. }
  35.  
  36. static void switch_from_none(void)
  37. {
  38. }
  39.  
  40. static void initpass_none(void)
  41. {
  42.   if (!PassNo)
  43.     none_target_seglimit = 0xfffffffful;
  44. }
  45.  
  46. static void switch_to_none(void)
  47. {
  48.   TurnWords = False;
  49.   SetIntConstMode(eIntConstModeMoto);
  50.  
  51.   PCSymbol = ""; HeaderID = 0x00; NOPCode = 0x00;
  52.   DivideChars = ","; HasAttrs = True;
  53.   AttrChars = ".";
  54.  
  55.   ValidSegs = 1 << SegCode;
  56.   Grans[SegCode] = 1; ListGrans[SegCode] = 1; SegInits[SegCode] = 0;
  57.   SegLimits[SegCode] = none_target_seglimit;
  58.  
  59.   MakeCode = make_code_none;
  60.   SwitchFrom = switch_from_none;
  61.   IsDef = is_def_none;
  62. }
  63.  
  64. void codenone_init(void)
  65. {
  66.   (void)AddCPU("NONE", switch_to_none);
  67.   AddInitPassProc(initpass_none);
  68. }
  69.