From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- other/burneye2/elf/debug/debug.ps | 379 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 379 insertions(+) create mode 100644 other/burneye2/elf/debug/debug.ps (limited to 'other/burneye2/elf/debug/debug.ps') diff --git a/other/burneye2/elf/debug/debug.ps b/other/burneye2/elf/debug/debug.ps new file mode 100644 index 0000000..02354ef --- /dev/null +++ b/other/burneye2/elf/debug/debug.ps @@ -0,0 +1,379 @@ +%!PS-Adobe-2.0 +%%Creator: dot version 1.8.9 (Wed Oct 2 09:41:21 MDT 2002) +%%For: (scut) scut,,, +%%Title: functiondeps +%%Pages: (atend) +%%BoundingBox: 35 35 163 209 +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval + +EncodingVector + dup 306 /AE + dup 301 /Aacute + dup 302 /Acircumflex + dup 304 /Adieresis + dup 300 /Agrave + dup 305 /Aring + dup 303 /Atilde + dup 307 /Ccedilla + dup 311 /Eacute + dup 312 /Ecircumflex + dup 313 /Edieresis + dup 310 /Egrave + dup 315 /Iacute + dup 316 /Icircumflex + dup 317 /Idieresis + dup 314 /Igrave + dup 334 /Udieresis + dup 335 /Yacute + dup 376 /thorn + dup 337 /germandbls + dup 341 /aacute + dup 342 /acircumflex + dup 344 /adieresis + dup 346 /ae + dup 340 /agrave + dup 345 /aring + dup 347 /ccedilla + dup 351 /eacute + dup 352 /ecircumflex + dup 353 /edieresis + dup 350 /egrave + dup 355 /iacute + dup 356 /icircumflex + dup 357 /idieresis + dup 354 /igrave + dup 360 /dcroat + dup 361 /ntilde + dup 363 /oacute + dup 364 /ocircumflex + dup 366 /odieresis + dup 362 /ograve + dup 365 /otilde + dup 370 /oslash + dup 372 /uacute + dup 373 /ucircumflex + dup 374 /udieresis + dup 371 /ugrave + dup 375 /yacute + dup 377 /ydieresis + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + dup scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw aligned label in bounding box aligned to current point +/alignedtext { % width adj text + /text exch def + /adj exch def + /width exch def + gsave + width 0 gt { + text stringwidth pop adj mul 0 rmoveto + } if + [] 0 setdash + text show + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +%%Page: 1 1 +%%PageBoundingBox: 36 36 163 209 +%%PageOrientation: Portrait +gsave +35 35 128 174 boxprim clip newpath +36 36 translate +0 0 1 beginpage +0 0 translate 0 rotate +0.000 0.000 0.000 graphcolor +14.00 /Times-Roman set_font + +% main +gsave 10 dict begin +filled +0.561 0.459 0.980 nodecolor +newpath 36 104 moveto +90 104 lineto +90 164 lineto +36 164 lineto +closepath +fill +0.000 0.000 0.000 nodecolor +newpath 36 104 moveto +90 104 lineto +90 164 lineto +36 164 lineto +closepath +stroke +gsave 10 dict begin +63 149 moveto 4 -0.5 ( ) alignedtext +end grestore +newpath 36 144 moveto +90 144 lineto +stroke +gsave 10 dict begin +63 129 moveto 35 -0.5 (main) alignedtext +end grestore +newpath 36 124 moveto +90 124 lineto +stroke +gsave 10 dict begin +63 109 moveto 4 -0.5 ( ) alignedtext +end grestore +end grestore + +% atoi +gsave 10 dict begin +filled +0.000 1.000 1.000 nodecolor +newpath 0 8 moveto +54 8 lineto +54 68 lineto +0 68 lineto +closepath +fill +0.000 0.000 0.000 nodecolor +newpath 0 8 moveto +54 8 lineto +54 68 lineto +0 68 lineto +closepath +stroke +gsave 10 dict begin +27 53 moveto 4 -0.5 ( ) alignedtext +end grestore +newpath 0 48 moveto +54 48 lineto +stroke +gsave 10 dict begin +27 33 moveto 24 -0.5 (atoi) alignedtext +end grestore +newpath 0 28 moveto +54 28 lineto +stroke +gsave 10 dict begin +27 13 moveto 4 -0.5 ( ) alignedtext +end grestore +end grestore + +% main -> atoi +newpath 57 104 moveto +52 96 45 86 39 76 curveto +stroke +gsave 10 dict begin +solid +0.000 0.000 0.000 edgecolor +newpath 41 75 moveto +34 68 lineto +37 78 lineto +closepath +fill +0.000 0.000 0.000 edgecolor +end grestore + +% printf +gsave 10 dict begin +filled +0.000 1.000 1.000 nodecolor +newpath 72 8 moveto +126 8 lineto +126 68 lineto +72 68 lineto +closepath +fill +0.000 0.000 0.000 nodecolor +newpath 72 8 moveto +126 8 lineto +126 68 lineto +72 68 lineto +closepath +stroke +gsave 10 dict begin +99 53 moveto 4 -0.5 ( ) alignedtext +end grestore +newpath 72 48 moveto +126 48 lineto +stroke +gsave 10 dict begin +99 33 moveto 40 -0.5 (printf) alignedtext +end grestore +newpath 72 28 moveto +126 28 lineto +stroke +gsave 10 dict begin +99 13 moveto 4 -0.5 ( ) alignedtext +end grestore +end grestore + +% main -> printf +newpath 69 104 moveto +74 96 81 86 87 76 curveto +stroke +gsave 10 dict begin +solid +0.000 0.000 0.000 edgecolor +newpath 89 78 moveto +92 68 lineto +85 75 lineto +closepath +fill +0.000 0.000 0.000 edgecolor +end grestore +endpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +end +restore +%%EOF -- cgit v1.3