Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ifndef ??version
  2.    ?debug macro
  3.      endm
  4.    publicdll macro name
  5.      public name
  6.      endm
  7.      endif
  8.      ?debug V 300h
  9.      ?debug S "..\USER\MAIN.CPP"
  10.      ?debug C E91253583B102E2E5C555345525C4D41494E2E435050
  11.    _TEXT segment byte public 'CODE'
  12.    _TEXT ends
  13.    DGROUP group _DATA,_BSS
  14.      assume cs:_TEXT,ds:DGROUP
  15.    _DATA segment word public 'DATA'
  16.    d@ label byte
  17.    d@w label word
  18.    _DATA ends
  19.    _BSS segment word public 'BSS'
  20.    b@ label byte
  21.    b@w label word
  22.    _c label byte
  23.      db 1 dup (?)
  24.    _c1 label byte
  25.      db 1 dup (?)
  26.    _c2 label byte
  27.      db 1 dup (?)
  28.    _i label word
  29.      db 2 dup (?)
  30.    _Tabl label byte
  31.      db 10 dup (?)
  32.    _BSS ends
  33.    _DATA segment word public 'DATA'
  34.    _Napis label byte
  35.      db 97
  36.      db 115
  37.      db 101
  38.      db 109
  39.      db 98
  40.      db 108
  41.      db 101
  42.      db 114
  43.      db 0
  44.    _DATA ends
  45.    _BSS segment word public 'BSS'
  46.    _ptr label word
  47.      db 2 dup (?)
  48.    _utab label word
  49.      db 8 dup (?)
  50.    _uptr label word
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement