Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. char memory[4096][17];
  4.  
  5. void load_default_memory() {
  6. strcpy(memory[0], "01000101");
  7. strcpy(memory[1], "01111110");
  8. strcpy(memory[2], "01001101");
  9. strcpy(memory[3], "10011110");
  10. strcpy(memory[4], "01111111");
  11. strcpy(memory[5], "00000000");
  12. strcpy(memory[6], "00000101");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement