Advertisement
Guest User

Untitled

a guest
Jul 13th, 2015
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. lines = {}
  2. lines[1] = "    ide1: BM-DMA at 0xc008-0xc00f, BIOS settings: hdc:pio, hdd:pio"
  3. lines[2] = "ne2k-pci.c:v1.03 9/22/2003 D. Becker/P. Gortmaker"
  4. lines[3] = "  http://www.scyld.com/network/ne2k-pci.html"
  5. lines[4] = "hda: QEMU HARDDISK, ATA DISK drive"
  6. lines[5] = "ide0 at 0x170-0x177, 0x376 on irq 15"
  7. lines[6] = "hdc: QEMU CD-ROM, ATAPI CD/DVD-ROM drive"
  8. lines[7] = "ide1 at 0x170-0x177, 0x376 on irq 15"
  9. lines[8] = "ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10"
  10. lines[9] = "ACPI: PCI Interrupt 0000:00:03:0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10"
  11. lines[10] = "eth0: RealTek RTL-8029 found at 0xc100, IRQ 10, 52:54:00:12:34:56."
  12. lines[11] = "hda: max request size: 512KiB"
  13. lines[12] = "hda: 180224 sectors (92 MB) w/256KiB Cache, CHS=178/255/63, (U)DMA"
  14. lines[13] = "hda: set_multmode: status=0x41 { DriverReady Error }"
  15. lines[14] = "hda: set_multmode: status=0x04 { DriverReady Error }"
  16. lines[15] = "ide: failed opcode wasL 0xef"
  17. lines[16] = "hda: cache flushes supported"
  18. lines[17] = " hda: hda1"
  19. lines[18] = "hdc: ATAPI 4X CD-ROM drive, 512kB Cache, (U)DMA"
  20. lines[19] = "Uniform CD-ROM driver Revision: 3.20"
  21. lines[20] = "Done."
  22. lines[21] = "Begin: Mounting root file system... ..."
  23. lines[22] = "/init: /init: 151: Syntax error: 0xforce=panic"
  24. lines[23] = "Kernel panic - not syncing: Attempted to kill init!"
  25. lines[24] = " _"
  26.  
  27. local com = require("component")
  28. local term = require("term")
  29. local computer = require("computer")
  30. local event = require("event")
  31. local gpu = com.gpu
  32.  
  33. gpu.setBackground(0x000000)
  34. term.clear()
  35. term.setCursor(1, 3)
  36. for _, line in pairs(lines) do
  37.   print(line)
  38. end
  39. event.pull("key_down")
  40. computer.shutdown(true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement