Added 64-bit linker script

This commit is contained in:
Santosh Srivatsan
2022-01-11 17:22:16 -05:00
parent d7e2a6b3b1
commit d762d401cd
5 changed files with 265 additions and 7 deletions

View File

@@ -133,7 +133,7 @@ struct mem_addr_size_t {
uint32_t size;
};
inline AddrType get_addr_type(Word addr, uint32_t size) {
inline AddrType get_addr_type(DWord addr, uint32_t size) {
__unused (size);
if (SM_ENABLE) {
if (addr >= (SMEM_BASE_ADDR - SMEM_SIZE)

View File

@@ -66,11 +66,11 @@ public:
return id_;
}
DWord getPC() const {
Word getPC() const {
return PC_;
}
void setPC(DWord PC) {
void setPC(Word PC) {
PC_ = PC;
}