Forum: Assembly Apr 7th, 2009 |
| Replies: 1 Views: 319 well at first place i would like you to do the problem from the easy level . by this i mean its better to first just accept the numbers and then do the job you want to do and then add ne amount of... |
Forum: Assembly Apr 6th, 2009 |
| Replies: 7 Views: 614 well trust me pal , there is nothing like assembly .
assembly is the mother of all languages . there s nothing fast enough liike this besides , its good to be very close to machine and know assembly... |
Forum: Assembly Apr 5th, 2009 |
| Replies: 7 Views: 614 sorry for late reply
well if u have done a conventional installation that is installing in c drive. there must be a folder called TASM must be created
most imp searchfor two files mainly
1.... |
Forum: Assembly Apr 5th, 2009 |
| Replies: 3 Views: 420 well u can store the effective address of the array in stack pointer or DI .
then u can use the instruction
repe cmpsb ; this instruction will jmp to label1 if two words arent
... |
Forum: Assembly Apr 5th, 2009 |
| Replies: 7 Views: 614 well did u try that in tasm ....? that is the turbo assembler . (its kinda preferred ) |
Forum: Assembly Apr 5th, 2009 |
| Replies: 2 Views: 848 well i have written the program in tasm and it works fine .
the programmin stlye is a bit different but i guess u can undestand
.model small
.stack 40
.data
str1 db 50 dup('$')
msg db... |
Forum: Assembly Apr 5th, 2009 |
| Replies: 7 Views: 614 well why dont you try tasm (mostly doesnt disappoint ) .
besides why dont u try the following code
.model small
.stack
.data
str db "Welcome to assembly $"
.code
mov ax ,... |
Forum: Assembly Apr 3rd, 2009 |
| Replies: 8 Views: 601 Well in computer architectures , the newer versions have new technology appended to the older ones .
so if ur programming 8086 on an intel core 2 duo processor , it would still work (but the vice -... |
Forum: Assembly Apr 3rd, 2009 |
| Replies: 7 Views: 942 Well the best book as far as i have know is
Assembly language step by step - jeff duntemann
he teaches you from the scratch.
well after reading the whole book if u still want to develop more... |
Forum: Assembly Mar 27th, 2009 |
| Replies: 3 Views: 418 well usually the line no will be put in () brakets like these besides the error like :
Extra charaters in line (32) : -some text here -
the no in the brackets are usally the line no .i work in... |
Forum: Assembly Mar 27th, 2009 |
| Replies: 1 Views: 749 Well flux123 i dont pretend to be an expert in this assembly programming but have some tricks of my own
1. its better to use TASM cuz it excecutes both the styles of programming.
2. instead of... |