?login_element?

Subversion Repositories NedoOS

Rev

Rev 126 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.     ;; the included inchob/inchob.$c is fake file (doesn't have correct checksums/etc)
  2.     ; its payload is actually ASCII text, readable by text editor
  3.     OUTPUT "inchob.bin"
  4.  
  5.     ; create copy of original 256B data by using 3 parts
  6.     INCHOB "inchob/inchob.$c",,128
  7.     INCHOB "inchob/inchob.$c",128,64
  8.     INCHOB "inchob/inchob.$c",192
  9.     ; just read whole 256B data in one go
  10.     INCHOB "inchob/inchob.$c"
  11.     ; another composed 256B copy (having extra spaces everywhere to exercise parser)
  12.     INCHOB "inchob/inchob.$c"  ,  ,  128
  13.     INCHOB "inchob/inchob.$c"  ,  128  ,  64
  14.     INCHOB "inchob/inchob.$c"  ,  192
  15.     ; = 3x256 = 768B output
  16.  
  17.     OUTEND
  18.