Can’t apply this patch to the main branch or Mark’s v2 branch, and I can’t be much help if we are not working from the same codebase.
> --- a/forth/device/other.fs
> +++ b/forth/device/other.fs
> @@ -58,21 +58,27 @@ defer (poke)
> \ 5.3.7.2 Device-register access
>
> : rb@ ( addr -- byte )
> + ioc@
> ;
>
> : rw@ ( waddr -- w )
> + iow@
> ;
>
> : rl@ ( qaddr -- quad )
> + iol@
> ;
>
> : rb! ( byte addr -- )
> + ioc!
> ;
>
> : rw! ( w waddr -- )
> + iow!
> ;
>
> : rl! ( quad qaddr -- )
> + iol!
> ;
>
> : rx@ ( oaddr - o )
> _______________________________________________
> OpenBIOS mailing list -- openbios@openbios.org
> To unsubscribe send an email to openbios-leave@openbios.org
_______________________________________________
OpenBIOS mailing list -- openbios@openbios.org
To unsubscribe send an email to openbios-leave@openbios.org
Yes, I had the same issue when copying the patch from:
patching file forth/device/other.fs
Hunk #1 FAILED at 58.
patch unexpectedly ends in middle of line
1 out of 1 hunk FAILED -- saving rejects to file forth/device/other.fs.rej
patch unexpectedly ends in middle of line
Just apply these last 6 entries above to other.fs manually.
Best,
Howard