/* "hello world" program in my assembly language */ .data: // named array of 8-bit values const8 msg "Hello, World :3\n\0" .main: movc ax 1; // sys_write movc bx 1; // stdout movc cx @msg; // address of msg data movc dx #msg; // size of msg data sys movc ax 0 exit