Advertisement
nis

Untitled

nis
Jan 25th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. # This is the template file for creating symbols with tragesym
  2. # every line starting with '#' is a comment line.
  3. # save it as text file with tab separated cells and start tragesym
  4.  
  5. [options]
  6. # wordswap swaps labels if the pin is on the right side an looks like this:
  7. "# ""PB1 (CLK)"". That's useful for micro controller port labels"
  8. # rotate_labels rotates the pintext of top and bottom pins
  9. # this is useful for large symbols like FPGAs with more than 100 pins
  10. # sort_labels will sort the pins by it's labels
  11. # useful for address ports, busses, ...
  12. wordswap yes
  13. rotate_labels no
  14. sort_labels yes
  15. generate_pinseq yes
  16. sym_width 1400
  17. pinwidthvertical 400
  18. pinwidthhorizontal 400
  19.  
  20. [geda_attr]
  21. # name will be printed in the top of the symbol
  22. # if you have a device with slots, you'll have to use slot= and slotdef=
  23. # use comment= if there are special information you want to add
  24. version 20110125 1
  25. name DS1233A
  26. device DS1233A
  27. refdes U?
  28. footprint sot223
  29. description The DS1233A EconoReset monitors
  30. documentation
  31. author
  32. numslots 0
  33. dist-license
  34. use-license
  35. #slot 1
  36. #slotdef 1:
  37. #slotdef 2:
  38. #slotdef 3:
  39. #slotdef 4:
  40. #comment
  41. #comment
  42. #comment
  43.  
  44. [pins]
  45. # tabseparated list of pin descriptions
  46. #
  47. # pinnr is the physical number of the pin
  48. # seq is the pinseq= attribute, leave it blank if it doesn't matter
  49. # type can be (in, out, io, oc, oe, pas, tp, tri, clk, pwr)
  50. # style can be (line,dot,clk,dotclk,none). none if only want to add a net
  51. # posit. can be (l,r,t,b) or empty for nets
  52. # net specifies the name of the net. Vcc or GND for example.
  53. # label represents the pinlabel.
  54. # "negation lines can be added with ""\_"" example: \_enable\_ "
  55. # "if you want to write a ""\"" use ""\\"" as escape sequence"
  56. #
  57. #pinnr seq type style posit. net label
  58. 1 pwr line b GND
  59. 2 out line l NRST
  60. 3 pwr line r Vcc
  61. 4 pwr line b GND
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement