Opened 16 years ago
Closed 15 years ago
#35 closed defect (fixed)
Bug in the Sparc V8 component (LDA instruction)
Reported by: | Owned by: | developers | |
---|---|---|---|
Priority: | major | Component: | IP-Cores |
Keywords: | Cc: |
Description
While trying to run a sample code on the sparc processor, an error arised : line 80, the test
if(ins.format3a.i == 0) { \ m_exception = true; \ m_exception_cause = TP_ILLEGAL_INSTRUCTION;
is actually the contrary :
if(ins.format3a.i == 1) { \ m_exception = true; \ m_exception_cause = TP_ILLEGAL_INSTRUCTION;
cf. the sparc V8 reference manual, p. 160 (163), test on code line 9.
Note: See
TracTickets for help on using
tickets.
Replying to quentin.meunier@…:
Fixed, thanks for repporing.