Use real addresses in memory, extend memory size fo 0xFFFFFFFF
This commit is contained in:
parent
34a8f66035
commit
56c5203899
|
@ -29,9 +29,8 @@ public:
|
|||
// TLM-2 socket, defaults to 32-bits wide, base protocol
|
||||
tlm_utils::simple_target_socket<Memory> socket;
|
||||
|
||||
//enum { SIZE = 0x90000000 };
|
||||
enum {
|
||||
SIZE = 0x10000000
|
||||
SIZE = 0xFFFFFFFF
|
||||
};
|
||||
const sc_core::sc_time LATENCY;
|
||||
|
||||
|
|
|
@ -58,12 +58,6 @@ void Memory::b_transport(tlm::tlm_generic_payload &trans,
|
|||
unsigned char *byt = trans.get_byte_enable_ptr();
|
||||
unsigned int wid = trans.get_streaming_width();
|
||||
|
||||
adr = adr - memory_offset;
|
||||
|
||||
// Obliged to check address range and check for unsupported features,
|
||||
// i.e. byte enables, streaming, and bursts
|
||||
// Can ignore extensions
|
||||
|
||||
// *********************************************
|
||||
// Generate the appropriate error response
|
||||
// *********************************************
|
||||
|
@ -168,8 +162,8 @@ void Memory::readHexFile(std::string const& filename) {
|
|||
uint32_t address;
|
||||
byte_count = std::stoi(line.substr(1, 2), nullptr, 16);
|
||||
address = std::stoi(line.substr(3, 4), nullptr, 16);
|
||||
address = address + extended_address;
|
||||
//cout << "00 address 0x" << hex << address << endl;
|
||||
address = address + extended_address + memory_offset;
|
||||
|
||||
for (int i = 0; i < byte_count; i++) {
|
||||
mem[address + i] = stol(line.substr(9 + (i * 2), 2),
|
||||
nullptr, 16);
|
||||
|
|
Loading…
Reference in New Issue