Guest User

Untitled

a guest
Jul 20th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdint.h>
  2. enum action{
  3. DIR,
  4. INST,
  5. DATA,
  6. NONE
  7. };
  8.  
  9. struct parse_result{
  10. enum action action;
  11. char *lit;
  12. u_int32_t opcode;
  13. u_int32_t data;
  14. };
Add Comment
Please, Sign In to add comment