diff options
author | xtraeme <xtraeme> | 2006-02-19 19:31:41 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2006-02-19 19:31:41 +0000 |
commit | 80c11575c8cf40ebd5aec83e767eff01d7febd8c (patch) | |
tree | 41e469821e53388f86e71cf801e3b7aaf85586b8 /emulators/gxemul/patches | |
parent | 5d3e7ccfcaa22ac9cfab4e0f60a91d548ef14212 (diff) | |
download | pkgsrc-80c11575c8cf40ebd5aec83e767eff01d7febd8c.tar.gz |
Update to 0.3.8:
The user-visible changes between release 0.3.7 and 0.3.8 include:
o) The IQ80321 (Xscale) machine mode is now working well enough to
run NetBSD/evbarm 2.1.
o) Faster framebuffer output in some situations.
Diffstat (limited to 'emulators/gxemul/patches')
-rw-r--r-- | emulators/gxemul/patches/patch-aa | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/emulators/gxemul/patches/patch-aa b/emulators/gxemul/patches/patch-aa deleted file mode 100644 index 3f1a1e747b5..00000000000 --- a/emulators/gxemul/patches/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2005/11/30 19:11:01 rillig Exp $ - -ISO C90 does not allow code intermixed with declarations. - ---- src/cpus/memory_ppc.c.orig Tue Nov 22 22:56:18 2005 -+++ src/cpus/memory_ppc.c Wed Nov 30 20:08:16 2005 -@@ -57,11 +57,13 @@ int ppc_bat(struct cpu *cpu, uint64_t va - - /* 4 instruction BATs, 4 data BATs... */ - for (i=0; i<8; i++) { -+ uint32_t upper, lower, phys, ebs, mask; -+ - regnr = SPR_IBAT0U + i * 2; -- uint32_t upper = cpu->cd.ppc.spr[regnr]; -- uint32_t lower = cpu->cd.ppc.spr[regnr + 1]; -- uint32_t phys = lower & BAT_RPN, ebs = upper & BAT_EPI; -- uint32_t mask = ((upper & BAT_BL) << 15) | 0x1ffff; -+ upper = cpu->cd.ppc.spr[regnr]; -+ lower = cpu->cd.ppc.spr[regnr + 1]; -+ phys = lower & BAT_RPN, ebs = upper & BAT_EPI; -+ mask = ((upper & BAT_BL) << 15) | 0x1ffff; - - /* Instruction BAT, but not instruction lookup? Then skip. */ - if (i < 4 && !(flags & FLAG_INSTR)) |