-
Replied To a Post in disk not formatted
Yeah. If you really have assembled your above code and copied it into the mbr, than the mbr is of course corrupted. You need at very least the correct primary … -
Replied To a Post in while loop, repeatedly reads integers, stops when negative is entered
I wouldn't. Simply increase a counter by one each time a valid number is entered and add this value to a variable sum. After the loop you can divide the … -
Replied To a Post in How to add program to favorite program to list when it has been installed
Are you running the same .run-file over again (I confess, I have never used teamspeak)? A .run-file should put the programme somewhere in your bin- or opt- directories (install). If … -
Replied To a Post in Is Asembly Dead
It strongly depends. Also on you personal preference. 1) In normal desktop or server like environments, ASM isn't widely used anymore. But compiler-developers still need a very good knowledge of … -
Replied To a Post in Integer to word.
I'd try something like this: 1) I'd create static strings with all your written numbers, eg `_zero DB 'Zero',0` etc. 2) I'd put all addresses into a look-up-table, like `array … -
Replied To a Post in convert c to assemby in osx intel 64
Is there any particular reason you're trying to convert rather complex C-stuff to even more complex ASM stuff? If it works in C then hurray. If you're really heading to … -
Replied To a Post in string converted to an integer
I won't read or even test your code. This is a good start: Have a look at an ASCII-table. The number 0...9 have a defined representation there. You need to … -
Replied To a Post in Arrays (Beginner's MASM Assembly)
it does involve a loop. I'd call anything else bad coding. why don't you draw yourself a table with the actions you'd do when having to solve it by hand? … -
Replied To a Post in sequential read/write speeds
Well these tools basically do a certain task and messure how fast it can be acomplished. But these tasks are not that easy to make up. You have a lot … -
Replied To a Post in Input Gallery
Haven't tried your code, but as I can find just one "form", I'd take this is your front-end for the upload. You have forgotten to add "enctype="multipart/form-data". So the correct … -
Replied To a Post in Assembly Vowel Removal
Certainly doesn't help to post a question twice. Especially not when posting such long source codes. First off, tidy up your code. The one and only hint I can give: … -
Replied To a Post in when to usee c++ over java?
Java has the benefit of being multi-platform too. You can compile it once and run it on pretty all major operating systems. If you plan a software from scratch and … -
Replied To a Post in Opensuse 13.1 : No system tray detected on this system ....
I'm glad to hear you solved your printer-problem. The unsupported dongle hasn't got anything to do with opensuse. It's a missing linux-driver and every distro is affected by it. I … -
Replied To a Post in syntax error : missing ';' before '<<'
It'd be good when you post the whole error message including line-numbers etc. Otherwise finding the error is like finding the needle in a haystack.
The End.