Browse Source

Merge pull request #1232 from riscv-software-src/jerryz123-patch-1

Add htif_t tohost/fromhost accessors
pull/1234/head
Andrew Waterman 3 years ago
committed by GitHub
parent
commit
7937438882
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      fesvr/htif.h

3
fesvr/htif.h

@ -69,6 +69,9 @@ class htif_t : public chunked_memif_t
// Given an address, return symbol from addr2symbol map
const char* get_symbol(uint64_t addr);
addr_t get_tohost_addr() { return tohost_addr; }
addr_t get_fromhost_addr() { return fromhost_addr; }
private:
void parse_arguments(int argc, char ** argv);

Loading…
Cancel
Save