35,43d34
< //
< // The purpose of this code is to fake the loader & syscall mechanism
< // when there's no OS: thus there's no reason to use it in FULL_SYSTEM
< // mode when we do have an OS.
< //
< #include "config/full_system.hh"
<
< #if !FULL_SYSTEM
<
47c38
< #include "mem/se_translating_port_proxy.hh"
---
> #include "mem/translating_port.hh"
55c46
< SETranslatingPortProxy* memProxy)
---
> TranslatingPort* memPort)
59,60c50,51
< data_ptr_swap = TheISA::htog(data_ptr);
< memProxy->writeBlob(array_ptr, (uint8_t*)&data_ptr_swap,
---
> data_ptr_swap = htog(data_ptr);
> memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr_swap,
62c53
< memProxy->writeString(data_ptr, strings[i].c_str());
---
> memPort->writeString(data_ptr, strings[i].c_str());
69c60
< memProxy->writeBlob(array_ptr, (uint8_t*)&data_ptr, sizeof(AddrType));
---
> memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr, sizeof(AddrType));
72,74d62
<
< #endif // !FULL_SYSTEM
<