fup-inlineawl.awlpro 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <!-- Awlsim project file generated by awlsim-0.66.0-pre -->
  3. <awlsim_project date_create="2017-09-30 11:04:57.859335"
  4. date_modify="2018-07-08 18:00:24.540266"
  5. format_version="1">
  6. <!-- CPU core configuration -->
  7. <cpu>
  8. <!-- CPU core feature specification -->
  9. <specs call_stack_size="256"
  10. nr_accus="2"
  11. nr_counters="256"
  12. nr_flags="2048"
  13. nr_inputs="128"
  14. nr_localbytes="1024"
  15. nr_outputs="128"
  16. nr_timers="256"
  17. parenthesis_stack_size="7" />
  18. <!-- CPU core configuration -->
  19. <config clock_memory_byte="-1"
  20. cycle_time_limit_us="1000000"
  21. ext_insns_enable="1"
  22. mnemonics="2"
  23. ob_startinfo_enable="0"
  24. run_time_limit_us="-1" />
  25. </cpu>
  26. <!-- AWL/STL language configuration -->
  27. <language_awl>
  28. <!-- AWL/STL source code -->
  29. <source enabled="1"
  30. name="Main"
  31. type="0"><![CDATA[
  32. ORGANIZATION_BLOCK OB 1
  33. BEGIN
  34. CALL "FC_TEST_inline_0"
  35. CALL "FC_TEST_inline_1"
  36. CALL SFC 46 // STOP CPU
  37. END_ORGANIZATION_BLOCK
  38. ]]></source>
  39. <!-- AWL/STL source code -->
  40. <source enabled="1"
  41. name="TEST inline_0"
  42. type="0"><![CDATA[
  43. FUNCTION "FC_TEST_inline_0" : VOID
  44. BEGIN
  45. L 0
  46. T MW 10
  47. T MW 12
  48. CALL "FC_inline_0" (
  49. // VAR_INPUT
  50. EN0 := FALSE, // BOOL
  51. IN0 := 123, // INT
  52. EN2 := FALSE, // BOOL
  53. IN2 := 456, // INT
  54. // VAR_OUTPUT
  55. OUT0 := MW 10, // INT
  56. OUT2 := MW 12, // INT
  57. )
  58. __ASSERT== MW 10, 0
  59. __ASSERT== MW 12, 0
  60. L 0
  61. T MW 10
  62. T MW 12
  63. CALL "FC_inline_0" (
  64. // VAR_INPUT
  65. EN0 := TRUE, // BOOL
  66. IN0 := 123, // INT
  67. EN2 := FALSE, // BOOL
  68. IN2 := 456, // INT
  69. // VAR_OUTPUT
  70. OUT0 := MW 10, // INT
  71. OUT2 := MW 12, // INT
  72. )
  73. __ASSERT== MW 10, 123
  74. __ASSERT== MW 12, 0
  75. L 0
  76. T MW 10
  77. T MW 12
  78. CALL "FC_inline_0" (
  79. // VAR_INPUT
  80. EN0 := FALSE, // BOOL
  81. IN0 := 123, // INT
  82. EN2 := TRUE, // BOOL
  83. IN2 := 456, // INT
  84. // VAR_OUTPUT
  85. OUT0 := MW 10, // INT
  86. OUT2 := MW 12, // INT
  87. )
  88. __ASSERT== MW 10, 0
  89. __ASSERT== MW 12, 456
  90. L 0
  91. T MW 10
  92. T MW 12
  93. CALL "FC_inline_0" (
  94. // VAR_INPUT
  95. EN0 := TRUE, // BOOL
  96. IN0 := 123, // INT
  97. EN2 := TRUE, // BOOL
  98. IN2 := 456, // INT
  99. // VAR_OUTPUT
  100. OUT0 := MW 10, // INT
  101. OUT2 := MW 12, // INT
  102. )
  103. __ASSERT== MW 10, 123
  104. __ASSERT== MW 12, 456
  105. END_FUNCTION
  106. ]]></source>
  107. <!-- AWL/STL source code -->
  108. <source enabled="1"
  109. name="TEST inline_1"
  110. type="0"><![CDATA[
  111. FUNCTION "FC_TEST_inline_1" : VOID
  112. BEGIN
  113. L 0
  114. T MW 0
  115. T MW 10
  116. T MW 12
  117. CALL "FC_inline_1" (
  118. // VAR_INPUT
  119. EN0 := FALSE, // BOOL
  120. IN0 := 123, // INT
  121. IN1 := FALSE, // BOOL
  122. EN2 := FALSE, // BOOL
  123. IN2 := 456, // INT
  124. // VAR_OUTPUT
  125. OUT0 := MW 10, // INT
  126. OUT1 := M 0.0, // BOOL
  127. OUT2 := MW 12, // INT
  128. )
  129. __ASSERT== MW 10, 0
  130. __ASSERT== M 0.0, FALSE
  131. __ASSERT== MW 12, 0
  132. L 0
  133. T MW 0
  134. T MW 10
  135. T MW 12
  136. CALL "FC_inline_1" (
  137. // VAR_INPUT
  138. EN0 := TRUE, // BOOL
  139. IN0 := 123, // INT
  140. IN1 := FALSE, // BOOL
  141. EN2 := FALSE, // BOOL
  142. IN2 := 456, // INT
  143. // VAR_OUTPUT
  144. OUT0 := MW 10, // INT
  145. OUT1 := M 0.0, // BOOL
  146. OUT2 := MW 12, // INT
  147. )
  148. __ASSERT== MW 10, 123
  149. __ASSERT== M 0.0, FALSE
  150. __ASSERT== MW 12, 0
  151. L 0
  152. T MW 0
  153. T MW 10
  154. T MW 12
  155. CALL "FC_inline_1" (
  156. // VAR_INPUT
  157. EN0 := FALSE, // BOOL
  158. IN0 := 123, // INT
  159. IN1 := FALSE, // BOOL
  160. EN2 := TRUE, // BOOL
  161. IN2 := 456, // INT
  162. // VAR_OUTPUT
  163. OUT0 := MW 10, // INT
  164. OUT1 := M 0.0, // BOOL
  165. OUT2 := MW 12, // INT
  166. )
  167. __ASSERT== MW 10, 0
  168. __ASSERT== M 0.0, FALSE
  169. __ASSERT== MW 12, 456
  170. L 0
  171. T MW 0
  172. T MW 10
  173. T MW 12
  174. CALL "FC_inline_1" (
  175. // VAR_INPUT
  176. EN0 := TRUE, // BOOL
  177. IN0 := 123, // INT
  178. IN1 := FALSE, // BOOL
  179. EN2 := TRUE, // BOOL
  180. IN2 := 456, // INT
  181. // VAR_OUTPUT
  182. OUT0 := MW 10, // INT
  183. OUT1 := M 0.0, // BOOL
  184. OUT2 := MW 12, // INT
  185. )
  186. __ASSERT== MW 10, 123
  187. __ASSERT== M 0.0, FALSE
  188. __ASSERT== MW 12, 456
  189. L 0
  190. T MW 0
  191. T MW 10
  192. T MW 12
  193. CALL "FC_inline_1" (
  194. // VAR_INPUT
  195. EN0 := FALSE, // BOOL
  196. IN0 := 123, // INT
  197. IN1 := TRUE, // BOOL
  198. EN2 := FALSE, // BOOL
  199. IN2 := 456, // INT
  200. // VAR_OUTPUT
  201. OUT0 := MW 10, // INT
  202. OUT1 := M 0.0, // BOOL
  203. OUT2 := MW 12, // INT
  204. )
  205. __ASSERT== MW 10, 0
  206. __ASSERT== M 0.0, TRUE
  207. __ASSERT== MW 12, 0
  208. L 0
  209. T MW 0
  210. T MW 10
  211. T MW 12
  212. CALL "FC_inline_1" (
  213. // VAR_INPUT
  214. EN0 := TRUE, // BOOL
  215. IN0 := 123, // INT
  216. IN1 := TRUE, // BOOL
  217. EN2 := FALSE, // BOOL
  218. IN2 := 456, // INT
  219. // VAR_OUTPUT
  220. OUT0 := MW 10, // INT
  221. OUT1 := M 0.0, // BOOL
  222. OUT2 := MW 12, // INT
  223. )
  224. __ASSERT== MW 10, 123
  225. __ASSERT== M 0.0, TRUE
  226. __ASSERT== MW 12, 0
  227. L 0
  228. T MW 0
  229. T MW 10
  230. T MW 12
  231. CALL "FC_inline_1" (
  232. // VAR_INPUT
  233. EN0 := FALSE, // BOOL
  234. IN0 := 123, // INT
  235. IN1 := TRUE, // BOOL
  236. EN2 := TRUE, // BOOL
  237. IN2 := 456, // INT
  238. // VAR_OUTPUT
  239. OUT0 := MW 10, // INT
  240. OUT1 := M 0.0, // BOOL
  241. OUT2 := MW 12, // INT
  242. )
  243. __ASSERT== MW 10, 0
  244. __ASSERT== M 0.0, TRUE
  245. __ASSERT== MW 12, 456
  246. L 0
  247. T MW 0
  248. T MW 10
  249. T MW 12
  250. CALL "FC_inline_1" (
  251. // VAR_INPUT
  252. EN0 := TRUE, // BOOL
  253. IN0 := 123, // INT
  254. IN1 := TRUE, // BOOL
  255. EN2 := TRUE, // BOOL
  256. IN2 := 456, // INT
  257. // VAR_OUTPUT
  258. OUT0 := MW 10, // INT
  259. OUT1 := M 0.0, // BOOL
  260. OUT2 := MW 12, // INT
  261. )
  262. __ASSERT== MW 10, 123
  263. __ASSERT== M 0.0, TRUE
  264. __ASSERT== MW 12, 456
  265. END_FUNCTION
  266. ]]></source>
  267. </language_awl>
  268. <!-- FUP/FBD language configuration -->
  269. <language_fup>
  270. <!-- FUP/FBD source code -->
  271. <source enabled="1"
  272. name="inline_0"
  273. type="1"><![CDATA[
  274. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  275. <!-- Awlsim FUP/FBD source generated by awlsim-0.66.0-pre -->
  276. <FUP version="0" zoom="1.0">
  277. <blockdecl name='"FC_inline_0"' type="FC" />
  278. <interface allow_initvalue="0"
  279. allow_inouts="1"
  280. allow_inputs="1"
  281. allow_outputs="1"
  282. allow_retval="1"
  283. allow_stats="0"
  284. allow_temps="1">
  285. <inputs>
  286. <field name="EN0" type="BOOL" uuid="915b53ca-1fe9-4f38-9551-3e5baa435d78" />
  287. <field name="IN0" type="INT" uuid="51ddac84-d9d4-46d6-9c33-bd459db14322" />
  288. <field name="EN2" type="BOOL" uuid="e2b1c8a9-0f2e-40f6-bf59-60a98f31dc12" />
  289. <field name="IN2" type="INT" uuid="9a7f2f0e-90cb-4be5-a65e-345df2516fb3" />
  290. </inputs>
  291. <outputs>
  292. <field name="OUT0" type="INT" uuid="fd35ba36-448c-43c9-bcd6-3097f8e550cd" />
  293. <field name="OUT2" type="INT" uuid="b847edee-3c6d-4be9-a31b-1547847d8767" />
  294. </outputs>
  295. <retval>
  296. <field name="RET_VAL" type="VOID" uuid="9bef505d-3b03-4c80-8649-548f2249cb2f" />
  297. </retval>
  298. </interface>
  299. <grids>
  300. <grid height="19" uuid="f78e2e78-7338-487c-a829-541e7c77513b" width="12">
  301. <optimizers all="1" enabled="1" type="awl" />
  302. <wires>
  303. <wire id="0" uuid="a8f310f6-a89a-4d5e-b9ab-1eed2aa054e4" />
  304. <wire id="1" uuid="c4c891c1-3cff-451a-b155-d6ba8f0dc8f3" />
  305. <wire id="2" uuid="d152ca60-9d57-44a8-8c14-a7d4577cc637" />
  306. <wire id="3" uuid="6aa3647f-923a-48cc-8e1c-38da30e1a303" />
  307. <wire id="4" uuid="f86e8f4f-0803-4b2d-a9e7-7e3b6a23552a" />
  308. <wire id="5" uuid="887dc194-3b9d-47c3-92ad-f533b0587d05" />
  309. </wires>
  310. <elements>
  311. <element type="move" uuid="78c1bd86-948f-4a14-bf86-ae6900a385c7" x="2" y="2">
  312. <connections>
  313. <connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="dc43bbec-c54f-4b45-a348-f5151987531b" wire="0" />
  314. <connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="aa7a2058-d042-446d-b9c3-beb7ae18318c" wire="1" />
  315. <connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="cb1c9640-9ccd-4fc6-9b8c-1063965b0599" wire="2" />
  316. <connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="c1baf33b-c660-4147-b527-a51cec1038da" wire="-1" />
  317. </connections>
  318. </element>
  319. <element type="awl" uuid="b462fb25-bca6-452b-ace9-f35411d4acf0" x="2" y="7" />
  320. <element type="move" uuid="6222bf87-e38f-4b0d-bc04-3dcb98517bcc" x="2" y="12">
  321. <connections>
  322. <connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="14fb4f52-8b55-4438-974e-6a36f8127b0b" wire="3" />
  323. <connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="a1f96118-e593-4b56-b9fd-2e5269b88d4d" wire="4" />
  324. <connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="71343334-5011-4f24-9fd1-a8519601d7ca" wire="5" />
  325. <connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="c21f4c1b-d2d4-4609-a8dd-90f2ceb93f61" wire="-1" />
  326. </connections>
  327. </element>
  328. <element content="#EN0" subtype="load" type="operand" uuid="d355443b-9e38-467d-a198-4ab373875401" x="1" y="3">
  329. <connections>
  330. <connection dir_in="0" dir_out="1" pos="0" uuid="f10b0f71-73c1-425a-b47a-c9b84355a624" wire="0" />
  331. </connections>
  332. </element>
  333. <element content="#IN0" subtype="load" type="operand" uuid="d41f4cc1-9144-4801-bb55-5a7aa0c8da37" x="1" y="4">
  334. <connections>
  335. <connection dir_in="0" dir_out="1" pos="0" uuid="c672057d-9d64-4cd5-bc6d-269b55cff797" wire="1" />
  336. </connections>
  337. </element>
  338. <element content="#OUT0" subtype="assign" type="operand" uuid="3a760be1-7d63-4cc2-aa91-129ac09fde99" x="3" y="3">
  339. <connections>
  340. <connection dir_in="1" dir_out="0" pos="0" uuid="ee54da67-a076-4d68-947a-a411400c69d6" wire="2" />
  341. </connections>
  342. </element>
  343. <element content="#EN2" subtype="load" type="operand" uuid="bfd54472-1951-414c-933f-780920c6ec58" x="1" y="13">
  344. <connections>
  345. <connection dir_in="0" dir_out="1" pos="0" uuid="5744488b-60fc-449f-a226-bcadcaafa78b" wire="3" />
  346. </connections>
  347. </element>
  348. <element content="#IN2" subtype="load" type="operand" uuid="7a42b97f-3f56-495e-9d1d-5d5f2a1b28b6" x="1" y="14">
  349. <connections>
  350. <connection dir_in="0" dir_out="1" pos="0" uuid="b0ac21bd-36a9-4986-ba4f-5ac1699d303b" wire="4" />
  351. </connections>
  352. </element>
  353. <element content="#OUT2" subtype="assign" type="operand" uuid="6d22f983-41fa-4094-976a-ef737f29c38b" x="3" y="13">
  354. <connections>
  355. <connection dir_in="1" dir_out="0" pos="0" uuid="ab6d835b-01f2-423e-9b4b-9ee296007e93" wire="5" />
  356. </connections>
  357. </element>
  358. </elements>
  359. </grid>
  360. </grids>
  361. </FUP>
  362. ]]></source>
  363. <!-- FUP/FBD source code -->
  364. <source enabled="1"
  365. name="inline_1"
  366. type="1"><![CDATA[
  367. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  368. <!-- Awlsim FUP/FBD source generated by awlsim-0.66.0-pre -->
  369. <FUP version="0" zoom="1.0">
  370. <blockdecl name='"FC_inline_1"' type="FC" />
  371. <interface allow_initvalue="0"
  372. allow_inouts="1"
  373. allow_inputs="1"
  374. allow_outputs="1"
  375. allow_retval="1"
  376. allow_stats="0"
  377. allow_temps="1">
  378. <inputs>
  379. <field name="EN0" type="BOOL" uuid="b9fdd5bf-2f9b-4fc6-a917-4985ae5cf102" />
  380. <field name="IN0" type="INT" uuid="8c5a2b14-011d-4dc5-9f32-d3ecf25d9335" />
  381. <field name="IN1" type="BOOL" uuid="599ac5ad-7afb-479b-921f-80e153ad7c83" />
  382. <field name="EN2" type="BOOL" uuid="9c78586f-df97-41d9-bc49-50e9e23771e6" />
  383. <field name="IN2" type="INT" uuid="f48aca32-66d6-49b0-a951-6a074762dd18" />
  384. </inputs>
  385. <outputs>
  386. <field name="OUT0" type="INT" uuid="7394e372-3e08-469d-b172-2917b560138d" />
  387. <field name="OUT1" type="BOOL" uuid="2a90bfb9-7a84-4159-9d9f-cf9248d341ba" />
  388. <field name="OUT2" type="INT" uuid="c77121fe-fb9b-43f3-bfab-e2dc8b389efd" />
  389. </outputs>
  390. <retval>
  391. <field name="RET_VAL" type="VOID" uuid="f567d408-2a34-4494-95d0-81c68988f8fa" />
  392. </retval>
  393. </interface>
  394. <grids>
  395. <grid height="19" uuid="eafc377b-2d95-4b8d-9f28-672281751085" width="12">
  396. <optimizers all="1" enabled="1" type="awl" />
  397. <wires>
  398. <wire id="0" uuid="ef27c981-ff7d-4476-aa0b-976f04931729" />
  399. <wire id="1" uuid="1adc7b9a-70e6-41ef-9962-3179e1d5e19c" />
  400. <wire id="2" uuid="668a96f8-ff77-4038-b354-0a30194304a3" />
  401. <wire id="3" uuid="0330dc27-cb50-4755-bf1b-7f51b5a2e38a" />
  402. <wire id="4" uuid="6d9b51fa-0f57-4abb-bbf4-b7797fdb82f3" />
  403. <wire id="5" uuid="699f8b1c-7479-42b5-9fc7-f168208daa94" />
  404. </wires>
  405. <elements>
  406. <element type="move" uuid="872a5ac4-933f-4951-a5d8-8546557e0945" x="2" y="2">
  407. <connections>
  408. <connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="aa749ca1-dd45-45d5-ad05-4d8711e702ff" wire="0" />
  409. <connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="10b43e44-d42a-4ebf-b912-b7a005661af8" wire="1" />
  410. <connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="60ee9110-1668-4da9-914e-c45384b0e13d" wire="2" />
  411. <connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="9acea2d6-cd6d-4bd2-8896-a2b983d4b2bc" wire="-1" />
  412. </connections>
  413. </element>
  414. <element type="move" uuid="4c3967d8-3385-4bc7-b142-c80d3f5bbdcd" x="2" y="12">
  415. <connections>
  416. <connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="11ef1b0a-8b89-4ebf-925a-5afe9c9bbe9f" wire="3" />
  417. <connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="e4c5e628-bdd9-4027-9208-d5f9db424686" wire="4" />
  418. <connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="f2541927-60c6-4af3-8565-dc05d5df07a3" wire="5" />
  419. <connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="a5abe2ee-e7dd-4303-b61f-31dbb73a5b04" wire="-1" />
  420. </connections>
  421. </element>
  422. <element content="U #IN1&#13;&#10;= #OUT1" type="awl" uuid="bb9cbe5b-f23f-4910-be47-1374b96171d5" x="2" y="7" />
  423. <element content="#EN0" subtype="load" type="operand" uuid="96ea653f-4a75-47e8-88bc-9abab3b579be" x="1" y="3">
  424. <connections>
  425. <connection dir_in="0" dir_out="1" pos="0" uuid="e956c7fc-0cd1-47cb-984b-2e0ab999f3a9" wire="0" />
  426. </connections>
  427. </element>
  428. <element content="#IN0" subtype="load" type="operand" uuid="5e58fd60-145f-43e1-98da-c3084b9ea063" x="1" y="4">
  429. <connections>
  430. <connection dir_in="0" dir_out="1" pos="0" uuid="2766c068-26df-4646-85a3-783786d67d8d" wire="1" />
  431. </connections>
  432. </element>
  433. <element content="#OUT0" subtype="assign" type="operand" uuid="f2ca5d75-1ed1-4e30-b150-ac4ffac90189" x="3" y="3">
  434. <connections>
  435. <connection dir_in="1" dir_out="0" pos="0" uuid="6881d0db-d248-452f-b108-fc260f4d7e63" wire="2" />
  436. </connections>
  437. </element>
  438. <element content="#EN2" subtype="load" type="operand" uuid="de3d03c8-dd9e-4085-87a1-fc0d6caa63a6" x="1" y="13">
  439. <connections>
  440. <connection dir_in="0" dir_out="1" pos="0" uuid="8c03cf61-8129-4565-adfe-c026eedad0ff" wire="3" />
  441. </connections>
  442. </element>
  443. <element content="#IN2" subtype="load" type="operand" uuid="d6659f54-31ae-4af7-be89-3abb719ec121" x="1" y="14">
  444. <connections>
  445. <connection dir_in="0" dir_out="1" pos="0" uuid="fee9c146-95ea-433f-ac88-0ebfc4336c13" wire="4" />
  446. </connections>
  447. </element>
  448. <element content="#OUT2" subtype="assign" type="operand" uuid="90586602-7e6d-41a8-8fbc-a1d09cc77652" x="3" y="13">
  449. <connections>
  450. <connection dir_in="1" dir_out="0" pos="0" uuid="34b9bf17-ec52-490c-9d73-2ff97fa0eabb" wire="5" />
  451. </connections>
  452. </element>
  453. </elements>
  454. </grid>
  455. </grids>
  456. </FUP>
  457. ]]></source>
  458. </language_fup>
  459. <!-- Symbol table configuration -->
  460. <symbols>
  461. <!-- symbol table source code -->
  462. <source enabled="1"
  463. name="Main table"
  464. type="3"><![CDATA[
  465. 126,FC_inline_0 FC 10 FC 10
  466. 126,FC_TEST_inline_0 FC 11 FC 11
  467. 126,FC_inline_1 FC 20 FC 20
  468. 126,FC_TEST_inline_1 FC 21 FC 21
  469. ]]></source>
  470. </symbols>
  471. <!-- Core server link configuration -->
  472. <core_link>
  473. <!-- Locally spawned core server -->
  474. <spawn_local enable="1"
  475. interpreters="$DEFAULT"
  476. port_range_begin="4183"
  477. port_range_end="8278" />
  478. <!-- Remote server connection -->
  479. <connect host="localhost"
  480. port="4151"
  481. timeout_ms="3000" />
  482. <!-- Transport tunnel -->
  483. <tunnel local_port="-1"
  484. type="0">
  485. <ssh executable="ssh"
  486. port="22"
  487. user="pi" />
  488. </tunnel>
  489. </core_link>
  490. <!-- Graphical user interface configuration -->
  491. <gui>
  492. <editor autoindent="1"
  493. paste_autoindent="1"
  494. validation="1" />
  495. </gui>
  496. </awlsim_project>