Advertisement
Guest User

Untitled

a guest
Jun 7th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. # mac-128k.cfg
  2.  
  3. path = "."
  4. path = "roms"
  5.  
  6. cfg.sony = 0
  7.  
  8. cpu {
  9. model = "68000"
  10. speed = 1
  11. }
  12.  
  13. ram {
  14. address = 0x000000
  15. size = 128K
  16. }
  17.  
  18. rom {
  19. file = "pce-mac-classic.rom"
  20. address = 0x400000
  21. size = 64K
  22. }
  23.  
  24. if (cfg.sony) {
  25. rom {
  26. file = "pce-macplus-pcex.rom"
  27. address = 0xf80000
  28. size = 256K
  29. }
  30. }
  31.  
  32. keyboard {
  33. model = 7
  34. intl = 0
  35. }
  36.  
  37. rtc {
  38. file = "pce-mac-classic-pram.dat"
  39. realtime = 1
  40. }
  41.  
  42. if (cfg.sony) {
  43. sony {
  44. enable = 1
  45. insert_delay = 2
  46. insert_delay_1 = 1
  47. }
  48. }
  49.  
  50. iwm {
  51. drive {
  52. drive = 1
  53. disk = 1
  54. file = "fd1.pbit"
  55. inserted = 1
  56. single_sided = 1
  57. locked = 0
  58. auto_rotate = 1
  59. }
  60.  
  61. drive {
  62. drive = 2
  63. disk = 2
  64. file = "fd2.pbit"
  65. inserted = 0
  66. single_sided = 1
  67. locked = 0
  68. auto_rotate = 1
  69. }
  70. }
  71.  
  72. serial {
  73. port = 0
  74.  
  75. # driver = "null"
  76. # driver = "posix:file=ser_a.out"
  77. # driver = "pty:symlink=ser_a"
  78. driver = "stdio:file=ser_a.out"
  79. # driver = "tcp:port=5556"
  80. # driver = "tios:file=/dev/ttyS0:log=ser_a.log"
  81. }
  82.  
  83. serial {
  84. port = 1
  85.  
  86. driver = "stdio:file=ser_b.out"
  87. }
  88.  
  89. terminal {
  90. driver = "sdl"
  91.  
  92. # escape = "CtrlRight"
  93.  
  94. scale = 1
  95. border = 0
  96.  
  97. aspect_x = 3
  98. aspect_y = 2
  99. }
  100.  
  101. terminal {
  102. driver = "x11"
  103.  
  104. # escape = "CtrlRight"
  105.  
  106. scale = 1
  107.  
  108. aspect_x = 3
  109. aspect_y = 2
  110.  
  111. mouse_mul_x = 1
  112. mouse_div_x = 2
  113. mouse_mul_y = 1
  114. mouse_div_y = 2
  115. }
  116.  
  117. sound {
  118. # Apply a low-pass filter with the specified cut-off
  119. # frequency in Herz. This is separate from the low-pass
  120. # filter in the sound driver. If the frequency is 0,
  121. # the filter is disabled.
  122. # lowpass = 8000
  123.  
  124. driver = "null"
  125. #driver = "wav:wav=speaker.wav:lowpass=0:wavfilter=0"
  126. #driver = "oss:dev=/dev/dsp:wav=speaker.wav:lowpass=0:wavfilter=0"
  127. #driver = "sdl:wav=speaker.wav:lowpass=0:wavfilter=0"
  128. }
  129.  
  130. disk {
  131. drive = 1
  132. type = "auto"
  133. file = "fd1.image"
  134. file = "fd1.pfdc"
  135. file = "fd1.img"
  136. # cow = "fd1.cow"
  137. optional = 0
  138. }
  139.  
  140. disk {
  141. drive = 2
  142. type = "auto"
  143. file = "fd2.image"
  144. file = "fd2.pfdc"
  145. file = "fd2.img"
  146. # cow = "fd2.cow"
  147. optional = 1
  148. }
  149.  
  150. disk {
  151. drive = 3
  152. type = "auto"
  153. file = "fd3.image"
  154. file = "fd3.pfdc"
  155. file = "fd3.img"
  156. # cow = "fd3.cow"
  157. optional = 1
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement