Re: A86: Re: Assembly
[Prev][Next][Index][Thread]
Re: A86: Re: Assembly
In a message dated 4/20/99 8:44:28 PM Pacific Daylight Time,
ziggy2282@juno.com writes:
> all u have to do is this. Say in the include, this is clrLCD (which it
> is) :
>
> _clrLCD equ 4A7Eh
>
> we could make it like this:
>
> _ClLCD equ 4A7Eh
A "newbie.h" file would not be that hard to write, if it was kept simple. ASM
code is written to be easy on the typing, but very visually hard to read. A
few equates like this would be nice:
load equ ld
<- equ , ;So that you can remember what direction to save registers
and stuff to. :)
ret equ EndSub
goto equ jmp
Junk like that. :)
The only difficult part would be making sure it didn't screw other stuff up.
:P