diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-07-07 19:33:33 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-07-07 19:33:33 -0700 |
commit | 8af1d14863bb6ffad2c50b5275a848240c68c62e (patch) | |
tree | 0dc5406aafc64451f594ace900d3847e6559d9e1 /tern.h | |
parent | 358991e7fef42ae206231aabfeee045e5214dbe4 (diff) |
Add support for reading cartridge memory map from ROM database, though without EEPROM support for now
Diffstat (limited to 'tern.h')
-rw-r--r-- | tern.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -39,6 +39,7 @@ tern_val tern_find_path(tern_node *head, char *key); tern_node * tern_insert_ptr(tern_node * head, char * key, void * value); tern_node * tern_insert_node(tern_node *head, char *key, tern_node *value); uint32_t tern_count(tern_node *head); +void tern_foreach(tern_node *head, iter_fun fun, void *data); char * tern_int_key(uint32_t key, char * buf); tern_node * tern_get_node(tern_val value); |