I use masm a great deal in free lance projects, it's my job to convince the company im working for as to why ASM(masm being my flavor) is suitable language for their enterprise software. Over the years masm has been there for me, and been a real pleasure, however in the new era thats upon us with the introduction of the 64bit world i'm curious where the future of asm development is headed? Right now masms 64bit verisons seem awful and unusable, the author of jwasm who created a almost fully compadible masm clone abandonded us, the author of poasm made it clear he doesn't care about the asm community and the development of his tool is unknown. And with due to respect to projects like GoAsm, Fasm, Solar ASM, and the rest, they're pretty unknown and some without much longevity. To where is a masm programmer to turn? who will save us?
I put my money on Jwasm. Just cause he left the forum doesn't mean jwasm is dead. Also, the project is opensource, anyone can contribute.
I'm not an expert, but it's not some huge undertaking to add 64-bit support. Or is it ?
Quote from: E^cubeRight now masms 64bit verisons seem awful and unusable
Not true. ML64 doesn't support a lot of the high-level directives, but it is definitely usable. I think it's kind of nice to get back to coding MASM old-style (no high-level stuff).
Quote from: BlackVortexI'm not an expert, but it's not some huge undertaking to add 64-bit support. Or is it ?
I would say it is.
Japeth asked for help many times, and as far as I could tell, nobody offered. (I would have, but don't know C well enough to work my way around a hello-world program.) Anyways, this is not meant to be a rant.
Cube has a point, there are many assemblers out there. And despite diversity being good for most things in this world, I think it's counter-productive in assembly language, even damaging, to have so many "choices" for the same binary instructions. Not only is assembler non-portable, but having 8 assembler syntaxes on top of that? Might as well dictate that "to use assembler, you must code your own assembler." Then we'd have TomASM, DickASM, and HarryASM... :bg
Add onto that, this brave new world of 64-bit, where wormholes appear for no reason, and stack frames often gobble up entire programs, never to be seen again... and I would be questioning the future of assembly programming as well.
I suppose, we could always go back to binary...
I really haven't been that interested in JWASM, because I prefer MASM. It is the most popular assembler, it is part of Visual Studio you know. ml64.exe works fine if you take the time to learn how x64 works. At this point ml64 is not conducive to writing large programs all in assembly, but it can be done. As always, it is a good skill to know how to write optimized assembly modules for calling from C/C++.
32-bit isn't dead yet, but it's getting closer.
GoAsm and POASM would be my next choices. They both do x64 too.
Quote from: Mark Jones on March 21, 2009, 07:38:42 PM
Japeth asked for help many times, and as far as I could tell, nobody offered.
That's true. Japheth is doing a very nice work. He asked for help, he was right because it's too much work for only one person to implement all possible new features
Quote from: Vortex on March 22, 2009, 09:07:18 AM
That's true. Japheth is doing a very nice work. He asked for help, he was right because it's too much work for only one person to implement all possible new features
He has done an absolutely brilliant job. The only problem that limits JWasm's usability is the error lines bug.
What strikes me, though, is how rapidly and silently the JWasm subforum and all its contents disappeared :boohoo:
:naughty:
> What strikes me, though, is how rapidly and silently the JWasm subforum and all its contents disappeared
Yes, it was nearly as rapid and silent as the author's abandonment of the subforum and his resignation as the moderator.
Hi Hutch,
Is there any chance to get a zipped ( or in another form ) archive of the Jwasm subforum content?
Yeah, why wasn't the subforum moved somewhere and locked ?
It just got binned ? :eek
Guys,
Without the projects author it was a dead subforum. As a matter of fact it is still there, it is just not visible as I changed the permissions for access to the subforum. You can still access Japheth's site and he now hosts the project on SourceForge, that is his choice, not mine so you would need to contact him for support for JWASM.
RE the suggestion of a ZIP file, you must never have seen a SMF database, there is no clean way of pulling the content of any particular subforum and this is because I am familiar with the format ofr MYSQLDUMP that I do the backups with.
Hi Hucth,
I was thinking that the usage of a off-site website downloader would be helpful here. Yes,it's the author's choice.There is nothing we can do.
What's up with ML64. What's missing from it ?
Quote from: mitchiWhat's up with ML64. What's missing from it ?
Most of the high-level directives. Which, in my opinion, is not a big deal.
It should not have been a surprise to anyone - the abandonment of the high-level directives - because we were warned this was coming as early as ml.exe, version 8.0.
In fact, Microsoft accepted input to get the general feelings of programmers. Evidently, the majority was against keeping them.
Paul
Quote from: PBrennick on March 22, 2009, 10:01:16 PM
It should not have been a surprise to anyone - the abandonment of the high-level directives - because we were warned this was coming as early as ml.exe, version 8.0.
In fact, Microsoft accepted input to get the general feelings of programmers. Evidently, the majority was against keeping them.
Paul
this is really disapointing, high level directives makes code clean looking, and easy to read for individuals who are familiar with other programming languages. Microsoft should of asked user of this forum what to do,we're the most active with their compiler not trolls on usenet or C/C++ geeks who occasionally use inline. I guess with cloud computing being shoved down everyones throat by the big wigs, it won't matter much anyway in a few years :\
The fact that Microsoft was polling for opinions _was_ brought to this forum and discussed extensively. Some of us approached MS. They went with the larger user base obviously. What financial contribution do most assembly language programmers make to MS? None. There dividends comes from the C++ crowd and although I do not agree with nor like their decision; I can definitely understand it.
Paul
Microsoft Macro Assembler Reference
Directives Reference (http://msdn.microsoft.com/en-us/library/8t163bt0(VS.80).aspx)
x64
Conditional Control Flow
...
example:
.REPEAT
Generates code that repeats execution of the block of statements until condition becomes true. .UNTILCXZ, which becomes true when CX is zero, may be substituted for .UNTIL. The condition is optional with .UNTILCXZ.
Yeah, we know that some of it made it through. They told us what might disappear and what might stay. Basically, only those that would fit into highly optimized in-line asm code was kept.
Thanks, though.
Paul
I'm working at a 68000 assembler- more easy than 8086-type assembler.
What's differrent is the way it works internally- none of that you are maybe used to see from source codes that are available.
Key feature are certain code tables, not only for the opcodes, but also the allowed addressing modes, and even for the operand parsing!
the software is written for Windows, using VB/.NET
yet i do not know about an emulator (the assembler is intend for hardware projects), but this also would be possible!
there is no existing tool that i would want to use: too old, to obscure, non-Windows, or incompatible license.
I've started with some real-mode assembly in 1997, then VC++ inline assembly in 2001.
since 2004 RISC assembly as well!
However, i have taken a break from Windows assembly, almost completely for 5 years.
While it has it's uses, professionals claim that C is simply faster to write: http://picsystems.multiply.com/photos/album/11/this_software_has_bugs#14
So what's the future of ASM developement?
-there is more freedom of expression (tough once you know it, it can also be spelled in C).
-optimization, which is not possible for compiler (this has become less relevant).
I would say, C as first language is no good, it is obscure, and restricted.
once you know assembly, you can use C to write it!
but it must be learned in order to write good C code.
high-level directives- NO GOOD. if you consider all the MMX/SSE extensions, and the new 64bit CPUs, as well IA64 (Itanium), together with high level directives you get 1000 instructions to remember, or even more.
and it makes people create their own high-level macro extensions- no one can really understand them, so it will result in dead code.
I say this because i have seen numerous high-level extensions on the Amiga, and none of them survived/is used right now anymore.
I've read in 2007 that x86 is already a dead platform, and will be replaced completely with x64, and IA64, within a few years.
It will only be supported in compatibility mode, especially future CPUs will eventually only provide slow compatibility mode.
yet. x86 still works on my new AMD processor, and it is not too bad, or noticeable slow (many applications are still x86).
but it (x86) is a questionable platform for major ASM developements (for instance, OS, game engine).
do people really care about executeable size anymore? often trivial softwares require 100MB and more.
I'd recommend assembly, not C, as first language, maybe in this order:
HTML
BASIC/VB
ASSEMBLY
C++/C#
If you read that in 2007, they only have 1 more year to go - lol
I think x86 will be around as long as the majority of computers run it
Not everyone out there can afford the newest computer
Those who say these kinds of things are trying to perpetuate sales
They want everyone to upgrade to the new hardware, new OS, new software
It happens over the course of time, just not as fast as they'd like
My computer is a pentium 4 (dual) at 3 ghz
I hope to get at least 3 more years out of it
Even after that, I would expect it to be usable