     (       )  _68HC11 

      cfg : MC68HC11.CFG.        
   _68.exe.    (MC68HC11.MSG)    
      exe ,     
.  cfg          
   .

                             
          (   15).     
  ('_')      . 
     (boza:   ).
       ,    
.          
   equ  = (   ). 
       ==.

    NB:        (  -   
         )       ( ). :

boza            decb
                bne     boza

kosmata         proc
                jmp     boza    ;      
boza            lda     #0      ;     
kosmata         endp

                                
        .  ,       
    endp.        .. 
    ,        . 
       :     . 

boza:   proc
        ;....
boza    endp

                    

         ( X   Y  ):
                 lda x,0 = lda x = lda x+0 = lda x[0] = lda x.0
         (ZeroPage): ,       <, 
                             lda <boza
	 (Extended or Absolute):        >
		lda >boza  ; genereates extended address mode instruction

                 (   ) 
                BRclr, BRset, Bclr, Bset
           ZeroPage  Index  ,  
 immediate,       relative   :
        mnemo  op1 #op2, op3
        ,        (  #),
      ,

	   as11:
	as11   
		bclr	op1 #op2	;     
	       (brclr op1 #op2, op3),
	     (brclr op1 #23 24 boza) 
	  .        
	   .as11  ,   brclr 
	brset        /  .

                 (expressions)
           /    , .. /(1+3*offset) =>
  MSByte   (  ).

          ( )
	~ 		    not (  !)
        !                   not

        *                   
        /                   
	%		       (  \)
        \                     
        &                   and

        -                    

        +                   
        -                   
        ^                   xor
        |                   or

        <, >, <=, >=, =, <>  ( 0/$ffffffff)

                

        $abcd - hex
        0xabc - hex (C style)
        1234h - hex (Intel ASM style)

        %0101 - bin
	0i101 - bin (pseudo C style)
	101b  - bin (intel style, but first use .intelbin)
	101i  - bin (pseudo intel style)

	0o012 - octal (pseudo C style)
        0q012 - octal (pseudo C style)
        012q -  octal (intel style)
        012o -  octal (intel style)

        xxxx. - decimal (FP arithmetic)
        '...' - string ('Can''t' => Can't)
        "..." - string ("--""--" => --"--)

            , .. %10000000 = %1000_0000

                        DB
     DB     .      
 . :
                db      1, 5, 7, [7] 12, 'boza', 'kosmata' [50], 0

                        LSB / MSB
      DB,   (LSB/MSB) /  
.

:

                org     expression
		-       
		        relocatable   
		        (  )
		   org $100   .cmd ,    bin 
		           (cfg )

                equ

                end
		       


label:          ; global label
label           ; local label

label           =       expression ; global
label           ==      expression ; local

name            proc
[name]          endp


                section expression
		  - dummy section (       )
                ends

                error expression
		-    expression <> 0
		   error * <> 123,
		       PC  <> 123      =

                checksum
		-         
		      8       0

                db      [mult] expression [mult], ...
                lsb = db
                msb

                dw
                dwp = dw ; DW Positive bsex
                dwn      ; DW Negative bsex

                dd       ;
                ddp
                ddn

                ds      expression

                include

                list    on/off

                trunc   on/off          ; truncate listing dump

                define  ...
                undef   ...
                ifdef   ...
                ifndef  ...
                if      expression
                else
                endif

		old asm compatability (fcc, fcb, fdb, rmb):
		fcc = fcb = db
		fdb = dw
		rmb = ds
		as11	- allow as11 compatible brclr brset instructions

                intelbin - allow 010b as bin

:         


    (  )
      LDD
      CPD
      STD

      CPA
      CPB
      LDA
      LDB
      ORA
      ORB
      PHA
      PHB
      PLA
      PLB
      STA
      STB
      XORA
      XORB

      PHX
      PHY
      PLX
      PLY
