OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 133 to Rev 134
    Reverse comparison

Rev 133 → Rev 134

/trunk/or1ksim/cpu/common/abstract.c
37,7 → 37,7
#include "stats.h"
#include "except.h"
#include "debug_unit.h"
#include "or32.h"
#include "opcode/or32.h"
 
extern unsigned long reg[];
 
/trunk/or1ksim/cpu/common/abstract.h
18,7 → 18,7
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
#define MEMORY_START 0
#define MEMORY_LEN 102400
#define MEMORY_LEN 502400
#define STACK_SIZE 20
#define LABELNAME_LEN 50
#define INSNAME_LEN 15
30,18 → 30,21
struct label_entry *next;
};
 
/* Structure that holds disassembled instruction. */
/* Structure that holds disassembled instruction. */
struct insn_entry {
char *op1;
char *op2;
char *op3;
char *op4;
/* MM: Instruction index. */
/* MM: Instruction index instead of insn name. */
int insn_index;
unsigned int op[4][2];
};
 
/* This is an abstract memory type rather than physical memory type. It holds
disassembled instructions. */
#define OP_MEM_ACCESS 0x80000000
 
/* This is an abstract memory type rather than physical memory type. It holds
disassembled instructions. */
struct mem_entry {
unsigned char data;
unsigned char brk;
/trunk/or1ksim/cpu/common/parse.c
27,7 → 27,7
#include "arch.h"
#include "dmmu.h"
#include "coff.h"
#include "or32.h"
#include "opcode/or32.h"
 
#define MAXLINE_LEN 18000
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.