bconf.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. --The bios configuration file.
  2. --per ,err = P(peripheral,mountedName,configTable)
  3. --Create a new cpu mounted as "CPU"
  4. local CPU, yCPU, CPUKit = PA("CPU")
  5. --Create a new gpu mounted as "GPU"
  6. local GPU, yGPU, GPUKit = PA("GPU","GPU",{
  7. _ColorSet = { --The P8 Pallete
  8. {0,0,0,255}, --Black 1
  9. {28,43,83,255}, --Dark Blue 2
  10. {127,36,84,255}, --Dark Red 3
  11. {0,135,81,255}, --Dark Green 4
  12. {171,82,54,255}, --Brown 5
  13. {96,88,79,255}, --Dark Gray 6
  14. {195,195,198,255}, --Gray 7
  15. {255,241,233,255}, --White 8
  16. {237,27,81,255}, --Red 9
  17. {250,162,27,255}, --Orange 10
  18. {247,236,47,255}, --Yellow 11
  19. {93,187,77,255}, --Green 12
  20. {81,166,220,255}, --Blue 13
  21. {131,118,156,255}, --Purple 14
  22. {241,118,166,255}, --Pink 15
  23. {252,204,171,255} --Human Skin 16
  24. },
  25. _ClearOnRender = true, --Speeds up rendering, but may cause glitches on some devices !
  26. CPUKit = CPUKit
  27. })
  28. local LIKO_W, LIKO_H = GPUKit._LIKO_W, GPUKit._LIKO_H
  29. local ScreenSize = (LIKO_W/2)*LIKO_H
  30. --Create Audio peripheral
  31. PA("Audio")
  32. --Create gamepad contols
  33. PA("Gamepad","Gamepad",{CPUKit = CPUKit})
  34. --Create Touch Controls
  35. PA("TouchControls","TC",{CPUKit = CPUKit, GPUKit = GPUKit})
  36. --Create a new keyboard api mounted as "KB"
  37. PA("Keyboard","Keyboard",{CPUKit = CPUKit, GPUKit = GPUKit,_Android = (_OS == "Android"),_EXKB = false})
  38. --Create a new virtual hdd system mounted as "HDD"
  39. PA("HDD","HDD",{
  40. Drives = {
  41. C = 1024*1024 * 25, --Measured in bytes, equals 25 megabytes
  42. D = 1024*1024 * 25 --Measured in bytes, equals 25 megabytes
  43. }
  44. })
  45. local KB = function(v) return v*1024 end
  46. local RAMConfig = {
  47. layout = {
  48. {ScreenSize,GPUKit.VRAMHandler}, --0x0 -> 0x2FFF - The Video ram
  49. {ScreenSize,GPUKit.LIMGHandler}, --0x3000 -> 0x5FFF - The Label image
  50. {KB(64)} --0x6000 -> 0x15FFF - The floppy RAM
  51. }
  52. }
  53. local RAM, yRAM, RAMKit = PA("RAM","RAM",RAMConfig)
  54. PA("FDD","FDD",{
  55. GPUKit = GPUKit,
  56. RAM = RAM,
  57. DiskSize = KB(64),
  58. FRAMAddress = 0x6000
  59. })
  60. local _, WEB, yWEB, WEBKit = P("WEB","WEB",{CPUKit = CPUKit})