diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2007-11-26 09:28:35 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2007-11-26 09:28:35 +0000 |
commit | 04b4ef9c75ed734905ee1bdf681657395bf1dd08 (patch) | |
tree | 7afd3082a841d290022885a5e94f2226628afa31 /sys/arch/m68k | |
parent | c8bcb9eaf1366f287c7c29562467558769a87f3c (diff) |
typos; ok jmc@
sys/netinet/in_pcb.c and sys/net/bridgestp.c ok henning@
sys/dev/pci/bktr/* ok jakemsr@
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/fpsp/round.sa | 6 | ||||
-rw-r--r-- | sys/arch/m68k/m68k/db_disasm.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/m68k/fpsp/round.sa b/sys/arch/m68k/fpsp/round.sa index f46ad90f2ea..a09325b1025 100644 --- a/sys/arch/m68k/fpsp/round.sa +++ b/sys/arch/m68k/fpsp/round.sa @@ -1,4 +1,4 @@ -* $OpenBSD: round.sa,v 1.3 2005/11/15 21:09:45 miod Exp $ +* $OpenBSD: round.sa,v 1.4 2007/11/26 09:28:33 martynas Exp $ * $NetBSD: round.sa,v 1.3 1994/10/26 07:49:24 cgd Exp $ * MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP @@ -237,7 +237,7 @@ sgl_done: add_ext: addq.l #1,LOCAL_LO(a0) ;add 1 to l-bit bcc.b xcc_clr ;test for carry out - addq.l #1,LOCAL_HI(a0) ;propogate carry + addq.l #1,LOCAL_HI(a0) ;propagate carry bcc.b xcc_clr roxr.w LOCAL_HI(a0) ;mant is 0 so restore v-bit roxr.w LOCAL_HI+2(a0) ;mant is 0 so restore v-bit @@ -256,7 +256,7 @@ add_ext_done: add_dbl: add.l #ad_1_dbl,LOCAL_LO(a0) bcc.b dcc_clr - addq.l #1,LOCAL_HI(a0) ;propogate carry + addq.l #1,LOCAL_HI(a0) ;propagate carry bcc.b dcc_clr roxr.w LOCAL_HI(a0) ;mant is 0 so restore v-bit roxr.w LOCAL_HI+2(a0) ;mant is 0 so restore v-bit diff --git a/sys/arch/m68k/m68k/db_disasm.c b/sys/arch/m68k/m68k/db_disasm.c index cf17c2d2f03..7ecca49b97c 100644 --- a/sys/arch/m68k/m68k/db_disasm.c +++ b/sys/arch/m68k/m68k/db_disasm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_disasm.c,v 1.9 2002/03/14 01:26:34 millert Exp $ */ +/* $OpenBSD: db_disasm.c,v 1.10 2007/11/26 09:28:33 martynas Exp $ */ /* $NetBSD: db_disasm.c,v 1.19 1996/10/30 08:22:39 is Exp $ */ /* @@ -2426,7 +2426,7 @@ get_modregstr_moto(dbuf, bit, mod, sz, dd) addstr(dbuf,"(pc)"); break; } else if (reg == 4) { - /* uses ``sz'' to figure imediate data. */ + /* uses ``sz'' to figure immediate data. */ if (sz == SIZE_BYTE) { addchar('#'); prints(dbuf, @@ -2632,7 +2632,7 @@ get_modregstr_mit(dbuf, bit, mod, sz, dd) addchar(')'); break; } else if (reg == 4) { - /* uses ``sz'' to figure imediate data. */ + /* uses ``sz'' to figure immediate data. */ if (sz == SIZE_BYTE) { addchar('#'); prints(dbuf, @@ -2734,7 +2734,7 @@ get_modregstr_mit(dbuf, bit, mod, sz, dd) bd == 3 ? SIZE_LONG : SIZE_BYTE); if (od && !ISBITSET(ext,6) && !ISBITSET(ext,2)) - /* Pre-indexed and not supressing index */ + /* Pre-indexed and not suppressing index */ addchar(','); else if (od && ISBITSET(ext,2)) { /* Post-indexed */ |