***********************************************
* Using Linux in T104/107                     
* 
* Default Terminal Setting  4800 n 8 1 com2 ttys1
* 
* Creating source asm file:
* *************************
*				       				
* Edit xxx.asm file, using emacs, pico, joe, xemacs.
* If a dos/WIN editor was used, run dos2unix
* to remove dos control characters.			
*	
* Assemble source file:
* *********************
* 
* run, as11 xxx.asm -l >xxx.lst
* This should create: xxx.s19
*	              xxx.lst 
*
* Dumb Terminal:
* **************
* reset 68HC11 board.
*		
* run, vt6811 xxx.s19 if your board is using a 4Mhz crystal.
*      Vt6811_9600 xxx.s19 if your board is using a 8Mhz crystal
*	
* This should load the s19 record in to the 68HC11 ram.
* At the prompt, you can execute any BUFFALO command.
* Type <ctrl> c to exit vt6811.
*
* Sample code:
* ************						
*	 				
			    	
	org	$6000		; Set origin to start of 8 K RAM 
Start	ldaa	#$aa		; Load accu a with hex aa
	staa    $7000		; Store accu a at address hex 7000
	bra	Start		; Do this until board is reset
		
***************************************************
