From e9ff344d38ee1e1affd0807a040d8d1c8a75dc12 Mon Sep 17 00:00:00 2001 From: Brandon Ros Date: Wed, 2 Nov 2022 11:26:08 -0400 Subject: [PATCH] fix NEG remark typos --- prim_ops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prim_ops.c b/prim_ops.c index 9822655..e08a22b 100644 --- a/prim_ops.c +++ b/prim_ops.c @@ -721,7 +721,7 @@ u32 or_long(x86emu_t *emu, u32 d, u32 s) /**************************************************************************** REMARKS: -Implements the OR instruction and side effects. +Implements the NEG instruction and side effects. ****************************************************************************/ u8 neg_byte(x86emu_t *emu, u8 s) { @@ -746,7 +746,7 @@ u8 neg_byte(x86emu_t *emu, u8 s) /**************************************************************************** REMARKS: -Implements the OR instruction and side effects. +Implements the NEG instruction and side effects. ****************************************************************************/ u16 neg_word(x86emu_t *emu, u16 s) { @@ -772,7 +772,7 @@ u16 neg_word(x86emu_t *emu, u16 s) /**************************************************************************** REMARKS: -Implements the OR instruction and side effects. +Implements the NEG instruction and side effects. ****************************************************************************/ u32 neg_long(x86emu_t *emu, u32 s) {