Guest User

Untitled

a guest
Jun 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. named!(p_line<Input<'a>, AsmLine>, ws!(do_parse!(
  2. adr: hex_u32 >>
  3. char!(':') >>
  4. bytes: hex_u32 >>
  5. cmd: take_while!(|_|true)
  6. )));
Add Comment
Please, Sign In to add comment