;====================================================================
; Main.asm file generated by New Project wizard
;
; Created:   %%DATE%%
; Processor: %%CONTROLLER%%
; Compiler:  %%COMPILER%%
;====================================================================

$NOMOD51
$INCLUDE (%%INCFILE%%)

;====================================================================
; DEFINITIONS
;====================================================================

;====================================================================
; VARIABLES
;====================================================================

;====================================================================
; RESET and INTERRUPT VECTORS
;====================================================================

      ; Reset Vector
      org   0000h
      jmp   Start

;====================================================================
; CODE SEGMENT
;====================================================================

      org   0100h
Start:	
      ; Write your code here
Loop:	
      jmp Loop

;====================================================================
      END
