Guest User

Untitled

a guest
May 21st, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. start:
  2. read;
  3. jzero NN;
  4. jump EE;
  5.  
  6. NN: read;
  7. jzero NN;
  8. jump NE;
  9.  
  10. NE: read;
  11. jzero Ende;
  12. jump EE;
  13.  
  14. EE: read;
  15. jzero NN;
  16. jump EE;
  17.  
  18. Ende: load 1;
  19. write;
  20. halt;
Add Comment
Please, Sign In to add comment