Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. import java.io.File;
  2. import java.io.FileNotFoundException;
  3. import java.util.Scanner;
  4. public class Instruction
  5. {
  6. class RealInstruction
  7. {
  8. String binaryShit = "";
  9. public File f = new File("C:\\Users\\CBoese21\\Downloads\\regs3.init");
  10. Scanner fReader = new Scanner(f);
  11. //int[]binaryInstructions;
  12. RealInstruction(String s) throws FileNotFoundException
  13. {
  14. binaryShit += fReader.nextLine();
  15. System.out.println(binaryShit);
  16.  
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement