diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-04 01:19:00 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-04 01:19:00 -0600 |
| commit | 7e1dd67fd1f1618621dc0b995059e33d6c098aca (patch) | |
| tree | 01901be0b73cab4abb85721c73d55dae2af79892 /demo/demo.h | |
| parent | 897bd990f9e5ef1be358172c6804d49ffe7c453c (diff) | |
demo: implement rd, wr cmds
Diffstat (limited to 'demo/demo.h')
| -rw-r--r-- | demo/demo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/demo/demo.h b/demo/demo.h index 5cf41da..a8d81ce 100644 --- a/demo/demo.h +++ b/demo/demo.h @@ -35,6 +35,10 @@ void halt_cpus(unsigned mask); int strcmp(const char *s1, const char *s2); char *strtok_input(char **tokens); +int parse_hex(char **tokens, unsigned *val); +int parse_ptr(char **tokens, void **ptr); +int parse_aligned(char **tokens, void **ptr); int parse_cpu_mask(char **tokens, unsigned *mask); +int expect_end(char **tokens); #endif |
