    .include "eyebot.i"
    .section .text
    .globl main

main:  PEA hello              | load string address
       JSR LCDPutString       | call assembly routine
       add.l  #4,sp           | take parameters off stack
       RTS

hello: .asciz "Hello !"

