diff options
Diffstat (limited to 'mixlib')
| -rw-r--r-- | mixlib/xmix_vm.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/mixlib/xmix_vm.c b/mixlib/xmix_vm.c index 72ccd73..718a9d3 100644 --- a/mixlib/xmix_vm.c +++ b/mixlib/xmix_vm.c @@ -1,7 +1,7 @@  /* ---------------------- xmix_vm.c :   * Implementation of the functions declared in xmix_vm.h   * ------------------------------------------------------------------ - * Copyright (C) 2000, 2003 Free Software Foundation, Inc. + * Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.   *   * This program is free software; you can redistribute it and/or modify   * it under the terms of the GNU General Public License as published by @@ -211,8 +211,7 @@ lda_handler_ (mix_vm_t *vm, const mix_ins_t *ins)    g_assert (id >= mix_LDA && id <= mix_LDXN);    val = get_V_ (vm, ins); -  if ( id > mix_LDX && mix_fspec_left (ins->fspec) == 0) -    mix_word_reverse_sign (val); +  if (id > mix_LDX) mix_word_reverse_sign (val);    if ( (id > mix_LDA && id < mix_LDX) || (id > mix_LDAN && id < mix_LDXN) )      /* Bytes 1-3 of I regs are always null */      val = mix_word_set_field (mix_fspec_new (1,3),MIX_WORD_ZERO,val);  | 
