Search found 5 matches

by Sean3
Mon Aug 02, 2010 8:38 pm
Forum: General/Off-Topic
Topic: Active
Replies: 13
Views: 1600

Re: Active

Sean3!!!!!!!!!! I thought we had something special. Even though none of your 4 posts were directed to me, I felt we had a connection after reading the Assembly Hello World thread. And now you're just leaving me lost and heartbroken, like a Bella without her Edward. What if I have a question, I sign...
by Sean3
Mon Aug 02, 2010 12:19 pm
Forum: General/Off-Topic
Topic: Active
Replies: 13
Views: 1600

Active

Don't expect me to be active on this forum because I'm registered to a lot of forums. So if you want to talk to me or if you have any question just join my site at http://www.mseanonline.com/forum Its in my sig so don't worry about find it...
by Sean3
Mon Aug 02, 2010 12:15 pm
Forum: Programming Discussion
Topic: 16 bit Assembly Hello World
Replies: 17
Views: 1473

Re: 16 bit Assembly Hello World

@Sean3: Are you running XP? Might want to consider explaining the context of your snippet: Typing those commands into debug.exe (an assembler/debugger included in Windows operating systems before Vista) will yield the executable "hello.com". This is a 16-bit console program that will only...
by Sean3
Sun Aug 01, 2010 8:09 pm
Forum: Programming Discussion
Topic: 16 bit Assembly Hello World
Replies: 17
Views: 1473

Re: 16 bit Assembly Hello World

I can do a user input tut.
by Sean3
Sun Aug 01, 2010 7:24 pm
Forum: Programming Discussion
Topic: 16 bit Assembly Hello World
Replies: 17
Views: 1473

16 bit Assembly Hello World

-a 100 XXXX:0100 mov ah,09 ;String Function XXXX:0102 mov dx,0109 ;Address of 0109 XXXX:0105 int 21 ;Do it XXXX:0107 int 20 ;exit the program XXXX:0109 db "HelloWorld" ;Charater to output XXXX:0113 ;<return> -rcx ;edit the cx register CX 0000 :0113 ;File size of our program -n hello.com ;...