.include "labmac.i" .section .text .globl main main: MOVE.L #16, D6 | print 16 characters, loop 15..0 loop: MOVE.L #'*', D1 | load char to be printed CALLEXEC LCD_PutChar | call LCD print routine SUB #1, D6 | decrement counter BNE loop | continue if not equal to 0 MOVE.L #string, A0 | load string start address CALLEXEC LCD_PutString | call LCD print routine CALLEXEC KEY_Get | wait for key being pressed RTS | return to operating system string: .asciz "Hello, group xx"