index def62de620ba893040a1c409446cd6ee62c6c4bb..1f6ffde07e1a2bd4f2b08b563910eee641e4dd39 100644 (file)
@@ -6,17 +6,18 @@ See the end for copying conditions.
Please send mdk bug reports to bug-mdk@gnu.org.
---------------------------------------------------------------------------
-* Version 1.2.6 ():
+* Version 1.2.6 (10/10/10):
** Bug fixes:
- mixvm: the instruction MOVE with F=0 is interpreted correctly as
a NOP (#31010).
+ - mixasm: no longer limit the index field to 3 bits (#5652)
- debugger: breakpoints for I register modification fixed.
- Manual: download info updated to point to Git repositories
(#29524).
- - Compilation without Guile works again (#28086)
- - Parallel compilation with `make -jn' now works (#31018)
+ - Compilation without Guile works again (#28086).
+ - Parallel compilation with `make -jn' now works (#31018).
---------------------------------------------------------------------------
* Version 1.2.5 (11/10/09):
index 871a7f7dd3a975edd9cf505fe5908121c0fd29d3..663591df5ae0fd957ff9745a02bc84ec4a57cd96 100644 (file)
/* -*-c-*- ------------------ mix_ins.c :
* Implementation of the functions declared in mix_ins.h
* ------------------------------------------------------------------
- * Copyright (C) 1999, 2003, 2007 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2003, 2007, 2010 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
{
g_return_val_if_fail (ins != NULL, MIX_WORD_ZERO);
return (mix_word_t)((ins->address<<18)|
- ((ins->index&7)<<12)|(ins->fspec<<6)|(ins->opcode));
+ ((ins->index)<<12)|(ins->fspec<<6)|(ins->opcode));
}
mix_ins_id_t
index 7a4d0281a058a231af4c0ec122e5cd19b8d0ea68..1ea3f8118d818b2fee2e735fa97d856a636b5016 100644 (file)
* This file declares types and functions for manipulating MIX
* instructions
* ------------------------------------------------------------------
- * Copyright (C) 2000, 2006, 2007 Free Software Foundation, Inc.
+ * Copyright (C) 2000, 2006, 2007, 2010 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
@@ -155,7 +155,7 @@ mix_word_to_ins(mix_word_t w, mix_ins_t *ins);
/* unchecked versions for speed */
#define mix_ins_to_word_uncheck(ins) \
(mix_word_t)(((ins).address<<18)| \
- (((ins).index&7)<<12)|((ins).fspec<<6)|((ins).opcode))
+ (((ins).index)<<12)|((ins).fspec<<6)|((ins).opcode))
#define mix_word_to_ins_uncheck(word,ins) \
do { \