; Printing one byte (1) to first and last position in videoram 
; JDN / AAU

	JMP start
hello: DB "2" ; Variable
 
; use C register to point to video part of memory
; use B register to hold character
start:
	MOV B, [hello] ; mov byte on address hello to reg B
	MOV C, 232     ; addr of videoram
	MOV [C], B     ; mov byte to videoram
	HLT
 
