1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fix fubyte to actually return the correct value (it was always returning

zero).  This caused device reads to corrupt the first byte of the page
being read into (the cause of frozen keyboards in sysinstall).
This commit is contained in:
Doug Rabson 1999-01-05 18:39:02 +00:00
parent 0df45b5a31
commit d1fd776a79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42314

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: support.s,v 1.1 1998/06/10 10:53:15 dfr Exp $
* $Id: support.s,v 1.2 1998/12/20 13:21:55 dfr Exp $
*/
/*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -144,7 +144,6 @@
stq zero, U_PCB_ONFAULT(t2) /* clean up */
mov zero, v0
RET
END(fubyte)