This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

START_V2.A66 in Assembler Project?

Hello guys,

I'm trying to use the START_V2.A66 file in an assembler project. But it doesn't work for now. Here is my question: Do anybody know how to use this file in an assembler project? Or what I need to change inside the file, so that it works?

I'll be happy about any useful answer...

Thx

BK

Parents
  • Then you need to create the main procedure in your assembler file. For example...

    $NOMACRO
    $SEGMENTED CASE MODV2
    $MODINF (43)
    
         NAME HELLO
    
         NCODE  CGROUP  ?PR?HELLO
    
         ASSUME  DPP1 : NCONST
         ASSUME  DPP3 : SYSTEM
         REGDEF  R0 - R15
    
     ?PR?HELLO  SECTION  CODE WORD 'NCODE'
    
         main  PROC  NEAR
         GLOBAL  main
    
    ?C0001:
         JMP   cc_UC,?C0001
    
         main  ENDP
    ?PR?HELLO  ENDS
               END
    

Reply
  • Then you need to create the main procedure in your assembler file. For example...

    $NOMACRO
    $SEGMENTED CASE MODV2
    $MODINF (43)
    
         NAME HELLO
    
         NCODE  CGROUP  ?PR?HELLO
    
         ASSUME  DPP1 : NCONST
         ASSUME  DPP3 : SYSTEM
         REGDEF  R0 - R15
    
     ?PR?HELLO  SECTION  CODE WORD 'NCODE'
    
         main  PROC  NEAR
         GLOBAL  main
    
    ?C0001:
         JMP   cc_UC,?C0001
    
         main  ENDP
    ?PR?HELLO  ENDS
               END
    

Children