|
Message
From: =?unknown-8bit?Q?Gy=F6rgy?= 'nog' Jeney<nog@s...>
Date: Thu Mar 24 21:10:17 CET 2005
Subject: [openrisc] [or1ksim #55] Correct prototype
Hi,Somewere along the line I change setsim_reg32 to setsim_reg but forgot to change its prototype. This fixes it.
ChangeLog: * Fix the prototype of setsim_reg.
nog. -------------- next part -------------- diff -urp --unidirectional-new-file /home/nog/or1ksim-split/cpu/common/execute.h ./cpu/common/execute.h --- /home/nog/or1ksim-split/cpu/common/execute.h 2005-03-23 18:17:18.000000000 +0100 +++ ./cpu/common/execute.h 2005-03-19 18:47:42.000000000 +0100 @@ -56,7 +56,7 @@ inline void dump_exe_log(); inline int cpu_clock (); void cpu_reset (); uorreg_t evalsim_reg(unsigned int regno); -void setsim_reg32(unsigned int regno, uorreg_t value); +void setsim_reg(unsigned int regno, uorreg_t value); extern oraddr_t pcnext; int depend_operands(struct iqueue_entry *prev, struct iqueue_entry *next);
|
 |