CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Mar 2009
    Posts
    13

    need some more help

    when i include STDLIB.A AND STDLIB.LIB in my file it gives me the errror when i TLINK

    error: Undefined symbol PSP in library file stdlib.lib in modlue MEMORY

    any help?

  2. #2
    Join Date
    Mar 2009
    Posts
    13

    Re: need some more help

    it was my meminit function doing it..but now i get NTVDM error....i think its my DUAL CORE CPU causing this problem

  3. #3
    Join Date
    Apr 2003
    Posts
    1,755

    Re: need some more help

    I don't think it has anything to do with the dual processor. I downloaded the stdlib from http://webster.cs.ucr.edu/AsmTools/MASM/stdlib/ but the version I got doesn't need you to declare the PSP variable.

    Can you post your code and maybe attach the stdlib that you have so we can check where your exception is.

  4. #4
    Join Date
    Mar 2009
    Posts
    13

    Re: need some more help

    Ok i got it to work with the stdlib files your provided. but now i got one more problem

    print
    byte "Parse error",0


    byte shows up ILLEGAL INSTRUCTION

  5. #5
    Join Date
    Apr 2003
    Posts
    1,755

    Re: need some more help

    I'm not sure if that error is specific to your assembler. I got no error in my testing.

    Maybe try to replace "byte" with "db" and hope it will work

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured