Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: CppMaster
  • Content: Threads
  • Order by date
  1. CppMaster

    Fatal: 16 bit segments not supported in module TEST.ASM

    I'm currently learning ASM and trying one of the code examples. I have no problem assembling, but when I get to linking, using TLINK32 on a computer running Windows XP with an Intel Pentium 3 processor, I get the following output: The code in test.asm is: MODEL small .STACK 64 .DATA...
  2. CppMaster

    Newbie help with first program (program crashes)

    Hello, I have tried, using 32-bit assembly language code I found online, to write my own program. It assembled and link, but when I run it, I get a message saying the program had "encountered a problem and needs to close." It is a message that is common on Windows, asking to send a report to...
  3. CppMaster

    Book recommendation

    Hello, I would like to learn assembly language for 32-bit computers (intel, IBM, call it wtv you like), what book(s) would you recommend me? Thank you for your answers.
  4. CppMaster

    first asm program help

    I started a book on assembly, but it's a bit old and I wasn't able to assemble the fist program :s. Here's the code: .MODEL SMALL .STACK 64 .DATA DATA1 DB 52H DATA2 DB 29H SUM DB ? .CODE MAIN PROC FAR MOV AL,DATA MOV...

Part and Inventory Search

Back
Top