A83: I need help with one thing


[Prev][Next][Index][Thread]

A83: I need help with one thing




I want my program to start off by saying "Made by Mike Walsh" but wuth
inversed text.  How can i make it so ONLY that is inverted??so far i have
.NOLIST

    #define equ .equ
    #define EQU .equ
    #define end .end

    #include "ti83asm.inc"
    #include "tokens.inc"

    .LIST
    
    .org    9327h
    
    nop                 ;these 2 lines identify the program
    jr      prog_start  ;as AShell-compatable
    .dw     $0000       ;Version of table
    .dw     desc   	;Points to the program description
    .dw     $0000        ;Points to an 8x8 icon
    .dw     $0000       ;For future use ( *Libraries*? :)

prog_start:
    set textInverse,(iy+textflags)
    CALL _CLRLCDFULL      ;CLEAR SCREEN
    LD HL,0003
    LD HL,933Ah           ;HL = PTR TO START OF STRING TO DISP
    CALL _PUTS            ;DISPLAY STRING
    CALL _HOMEUP          ;CURSOR BACK TO UPPER LEFT CORNER
    .db "Made by Mike", 0
desc: .db "Mike Walsh", 0
ret                   ;RET FROM ASM PROGRAM
.end
END