mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-12 11:31:16 +00:00
7c6d875ec8
Refactored for better 64-bit value loading and storing. I also added missing opcodes.
43 lines
1.6 KiB
C++
43 lines
1.6 KiB
C++
//DingusPPC
|
|
//Written by divingkatae and maximum
|
|
//(c)2018-20 (theweirdo) spatium
|
|
//Please ask for permission
|
|
//if you want to distribute this.
|
|
//(divingkatae#1017 or powermax#2286 on Discord)
|
|
|
|
// The opcodes for the processor - ppcopcodes.cpp
|
|
|
|
#ifndef PPCMEMORY_H
|
|
#define PPCMEMORY_H
|
|
|
|
#include <vector>
|
|
#include <array>
|
|
|
|
/* Uncomment this to exhaustive MMU integrity checks. */
|
|
//#define MMU_INTEGRITY_CHECKS
|
|
|
|
/** generic PowerPC BAT descriptor (MMU internal state) */
|
|
typedef struct PPC_BAT_entry {
|
|
uint8_t access; /* copy of Vs | Vp bits */
|
|
uint8_t prot; /* copy of PP bits */
|
|
uint32_t phys_hi; /* high-order bits for physical address generation */
|
|
uint32_t lo_mask; /* mask for low-order logical address bits */
|
|
uint32_t bepi; /* copy of Block effective page index */
|
|
} PPC_BAT_entry;
|
|
|
|
|
|
extern void ibat_update(uint32_t bat_reg);
|
|
extern void dbat_update(uint32_t bat_reg);
|
|
|
|
extern void ppc_set_cur_instruction(const uint8_t* ptr);
|
|
extern void address_insert8bit_translate(uint8_t value, uint32_t addr);
|
|
extern void address_insert16bit_translate(uint16_t value, uint32_t addr);
|
|
extern void address_insert32bit_translate(uint32_t value, uint32_t addr);
|
|
extern void address_insert64bit_translate(uint64_t value, uint32_t addr);
|
|
extern void address_grab8bit_translate(uint32_t addr);
|
|
extern void address_grab16bit_translate(uint32_t addr);
|
|
extern void address_grab32bit_translate(uint32_t addr);
|
|
extern void address_grab64bit_translate(uint32_t addr);
|
|
extern uint8_t* quickinstruction_translate(uint32_t address_grab);
|
|
|
|
#endif // PPCMEMORY_H
|