[A83] Re: Conditional bcall()ing
[Prev][Next][Index][Thread]
[A83] Re: Conditional bcall()ing
At 08:28 PM 10/18/2001 -0500, you wrote:
>In MirageOS programming, is there a way to make a conditional bcall()?
>(Like "call z,<whatever>", only with bcall().)
I think that there is a BCALLZ() type thing, at least under ION. You have
to remember taht romcalls on the 83+ have to do other things, including a
rst somewhere. If you did something like:
call z,bcallz_vputs
bcallz_vputs:
bcall(_vputs)
ret
it would do what you are looking for (I think) but would be somewhat less
than efficient.
References: