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 Mike Lewis 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: *

  1. Simplicus

    Newbie Question

    Thanks. 1. I realize this. 2. That's what I needed to know. I never took a course in asm. My courses were in COBOL, fortran, and PLI. Yep, I'm old. Thanks for the short course on OFFSETs. 3. I will not refer to an OFFSET as a pointer. I will not refer to an OFFSET as a pointer. I will...
  2. Simplicus

    simple program help, counting characters and words

    function 0Ah of interrupt 21h gets a string of chars input from a user. In the second byte of the returned string, it will give you the number of characters in the string, less the enter key. As for the number of words, a very simple solution could be counting the number of spaces in the string...
  3. Simplicus

    Newbie Question

    I am running under Win95 on a Pentium using MASM. I have the following code: <code> .model small .stack 0100h .data inputstring label byte maxkeys db 80 charsinput db ? buffer db 80,dup(0) crlf db 0Dh,0Ah,'$' .code main proc .startup mov...

Part and Inventory Search

Back
Top