s/varaible/variable/ and s/varible/variable/ in comments.
This commit is contained in:
parent
8eaa933cb4
commit
fa98a90b9b
|
@ -1,5 +1,5 @@
|
|||
|
||||
/* $NetBSD: x86emu.c,v 1.13 2022/10/26 22:09:37 andvar Exp $ */
|
||||
/* $NetBSD: x86emu.c,v 1.14 2022/11/01 19:45:35 andvar Exp $ */
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
|
@ -381,7 +381,7 @@ no segment override. Address modes such as -3[BP] or 10[BP+SI] all refer to
|
|||
addresses relative to SS (ie: on the stack). So, at the minimum, all
|
||||
decodings of addressing modes would have to set/clear a bit describing
|
||||
whether the access is relative to DS or SS. That is the function of the
|
||||
cpu-state-varible emu->x86.mode. There are several potential states:
|
||||
cpu-state-variable emu->x86.mode. There are several potential states:
|
||||
|
||||
repe prefix seen (handled elsewhere)
|
||||
repne prefix seen (ditto)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: slc.c,v 1.15 2006/11/24 19:46:58 christos Exp $ */
|
||||
/* $NetBSD: slc.c,v 1.16 2022/11/01 19:45:35 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
|
@ -34,7 +34,7 @@
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)slc.c 8.1 (Berkeley) 6/4/93";
|
||||
#else
|
||||
__RCSID("$NetBSD: slc.c,v 1.15 2006/11/24 19:46:58 christos Exp $");
|
||||
__RCSID("$NetBSD: slc.c,v 1.16 2022/11/01 19:45:35 andvar Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
|
@ -42,7 +42,7 @@ __RCSID("$NetBSD: slc.c,v 1.15 2006/11/24 19:46:58 christos Exp $");
|
|||
|
||||
#ifdef LINEMODE
|
||||
/*
|
||||
* local varibles
|
||||
* local variables
|
||||
*/
|
||||
static unsigned char *def_slcbuf = (unsigned char *)0;
|
||||
static int def_slclen = 0;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pi1ppc.c,v 1.16 2021/12/03 13:27:38 andvar Exp $ */
|
||||
/* $NetBSD: pi1ppc.c,v 1.17 2022/11/01 19:45:35 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Alcove - Nicolas Souchu
|
||||
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pi1ppc.c,v 1.16 2021/12/03 13:27:38 andvar Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pi1ppc.c,v 1.17 2022/11/01 19:45:35 andvar Exp $");
|
||||
|
||||
#include "opt_pi1ppc.h"
|
||||
|
||||
|
@ -1057,7 +1057,7 @@ pi1ppc_read_ivar(device_t dev, int index, unsigned int *val)
|
|||
return rval;
|
||||
}
|
||||
|
||||
/* Write "instance varaibles" of pi1ppc device */
|
||||
/* Write "instance variables" of pi1ppc device */
|
||||
static int
|
||||
pi1ppc_write_ivar(device_t dev, int index, unsigned int *val)
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: atppc.c,v 1.40 2021/12/03 13:27:38 andvar Exp $ */
|
||||
/* $NetBSD: atppc.c,v 1.41 2022/11/01 19:45:35 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Alcove - Nicolas Souchu
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: atppc.c,v 1.40 2021/12/03 13:27:38 andvar Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: atppc.c,v 1.41 2022/11/01 19:45:35 andvar Exp $");
|
||||
|
||||
#include "opt_atppc.h"
|
||||
|
||||
|
@ -1494,7 +1494,7 @@ atppc_read_ivar(device_t dev, int index, unsigned int *val)
|
|||
return rval;
|
||||
}
|
||||
|
||||
/* Write "instance varaibles" of atppc device */
|
||||
/* Write "instance variables" of atppc device */
|
||||
static int
|
||||
atppc_write_ivar(device_t dev, int index, unsigned int *val)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue