Re: A82: Re: 1 Problem first....
[Prev][Next][Index][Thread]
Re: A82: Re: 1 Problem first....
In a message dated 98-02-11 16:26:01 EST, you write:
> So if your assembler does not support JP P and JP M just replace them with
> a .DB
>
> JP P,addr = .DB 11110010b .DW addr
> JP M,addr = .DB 11111010b .DW addr
>
> If this occurs in a lot of places define some macros like the following
>
> #DEFINE JPP(addr) .DB 11110010b \ .DW addr
> #DEFINE JPM(addr) .DB 11110010b \ .DW addr
>
> Dines
This is a much better solution than mine. Use this (I suggest the macros)
~Adamman