Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. .xlist //attempt to define a local label before any non-local labels
  2. include stdlib.a // parser: instruction expected
  3. includelib stdlib.lib // parser: instruction expected
  4. .list
  5. .286
  6.  
  7. dseg segment para public 'data'
  8. // Unknown section attribute 'public' ignored on declaration of section `para'
  9. h word ?
  10. i word ?
  11.  
  12. cseg segment para public 'code'
  13. assume cs:cseg, ds:dseg
  14.  
  15. Main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement