pouët.net

Who's still using asmpro ?

category: general [glöplog]
I've (briefly) seen this tool in a bp05 video (the 3sat one). It was apparently still used by someone (from darkage, but maybe he's the very last living user).

Since i've already contributed to the last two versions of this tool i can remember a fair amount of the sourcecode, and since there's still amiga ecs/aga stuff produced nowadays, my question is:

Does anyone have a need for an update (or, eventually have done their own private version, already) ?
added on the 2005-04-28 14:27:00 by hitchhikr hitchhikr
That was me using AsmPro in the video. I was just looking at some of my old sources on Dr. Dooms hard disk (I used to be in darkage years ago).

I know that Dr. Doom, myself and Blueberry all use AsmPro. There certainly is a need for an update! AsmPro still has lots of bugs... but we love it anyway ;-)
added on the 2005-04-28 15:17:37 by xeron xeron
Oh yeah... nearly forgot Bonkers & Todi of Tulou use it, as do Stingray and Scicco of Scarab.
added on the 2005-04-28 15:18:25 by xeron xeron
That must have been Xenrons' AsmPro as nobody from Darkage was at the BP partypace this year.
added on the 2005-04-28 15:23:21 by ghandy ghandy
I use Asm-One v1.30, but thats mainly because I'm too stupid&lazy to download anything more recent...
Plus, the default colors in AsmPro are really gay..
well, hitchy is french...
Xeron: What kind of update, what's lacking (apart the ppc stuff) ?

Quote:

I use Asm-One v1.30, but thats mainly because I'm too stupid&lazy to download anything more recent...
Plus, the default colors in AsmPro are really gay..


If you're satisfied with the one you're using presently, don't change. And if you're talking about the syntax highlighting colors, they were defined by solo/genetic who's dutch.
added on the 2005-04-28 18:33:38 by hitchhikr hitchhikr
Oooh lets see... fixes i'd like:

* The bug where if you paste a chunk of text that goes off the end of the screen, you "lose" the cursor and have to press escape twice

* The bug where you press Amiga+B to start marking a block and it displays the line incorrectl

* User-defined keyboard shortcuts. I'd like to change the keys for "search", "search & replace", "move to the end of the line", "move to the beginning of the line" etc. etc.

I know blueberry has some fixes he wants, but found it too difficult to fix them himself. I don't know if he visits pouet often, but his email address might be on www.loonies.dk
added on the 2005-04-28 18:48:29 by xeron xeron
Asm Pro is excellent, appreciated your work on it hitchhikr. Generally used PhxAss myself with Blacks Editor/GoldED. But i still check the genetic site everynow and again incase i get lucky and see an update :)
added on the 2005-04-28 19:59:03 by Intrinsic Intrinsic
Quote:

* The bug where if you paste a chunk of text that goes off the end of the screen, you "lose" the cursor and have to press escape twice

* The bug where you press Amiga+B to start marking a block and it displays the line incorrectl


These two bugs should be fixed in this (non-oficial) one:

http://perso.wanadoo.fr/franck.charlet/Asm-Pro.zip
added on the 2005-04-29 02:36:07 by hitchhikr hitchhikr
hitchhikr: thanks for showing interest in maintaining AsmPro, which I still use. I know that it is also used by Optima/Haujobb.
added on the 2005-04-29 08:27:02 by Corial Corial
Well, if several people are still using it, it might be valuable to improve the tool. Check if the update resolves the problems.

Thanks.
added on the 2005-04-29 11:07:55 by hitchhikr hitchhikr
yay, hitchy I use it, too. After Stingray slapped me with
a large trout for still stickin' with AsmOne1.4x at BP ;D

Now I'm running the Pro at home.
added on the 2005-04-29 11:32:24 by d0DgE d0DgE
@hitchhikr

Those bugs do appear to be fixed! Thanks... I've wanted those fixed for ages ;-)
added on the 2005-04-29 11:49:44 by xeron xeron
You're welcome.

That's at least 10 users i see, more than enough :D
Now let the bugs reports & features requests come.
added on the 2005-04-29 12:01:18 by hitchhikr hitchhikr
all these amiga 680x0 coders being active... yeah, It makes me cry of joy.... snif...
added on the 2005-04-29 12:04:02 by krabob krabob
I am still using it yes
all updates are welcome :D
added on the 2005-04-29 13:06:38 by EviL EviL
oh the memories!
hooray for AsmPro!
(and AsmOne too ;))
added on the 2005-04-29 18:55:15 by Spin Spin
Yes, very much appreciated, any work on these assemblers/making available to people who are looking for them is ... ya know. appreciated (:
Ok, but what i'm asking you is: what should be added/fixed ?
added on the 2005-04-30 11:51:09 by hitchhikr hitchhikr
is there code folding in asmpro now? neat for those huge messy asm-sources
added on the 2005-04-30 14:01:02 by loaderror loaderror
Converting a selected block of instructions into an include statement (and creating the relevant file) with the ability to re-inject such kind of statements inside the sourcecode afterwards (easy way) or just the ability to hide/show a block on the screen with some gfx element visually marking the position (hard way) ?
added on the 2005-04-30 14:48:38 by hitchhikr hitchhikr
The way it works in golded is :
some markup marks a start and end of a block of code. for example :

;//s Block name
lea mom,a0
add.l #1,(a9)
move.l (a0),dad
;//e

when folded this becomes

> Block Name

they can be nested aswell.. blocks inside blocks... It may be hell to add this to asmone if the editor isn't designed to support such stuff...

btw.. PhxAss seems to assemble this

move.l ( label, dx.l ),dx

while my AsmOne version did not.

added on the 2005-04-30 16:09:00 by loaderror loaderror
I will study this.
Meanwhile i released another version available here:

http://perso.wanadoo.fr/franck.charlet/AsmPro.zip
http://perso.wanadoo.fr/franck.charlet/AsmPro-Src.zip

This is how the change list looks like compared to the official version (1.16i):

Code: [FIX] - All libraries calls are now using relevants includes labels (Also added a couple of required includes). - Forced the FPU flag for 68040 & 60 so fpu instructions can be assembled when using these processors and fpu registers are displayed in the regs lists. - Pasting block of text when the caret is at the bottom of the editor won't trash it anymore. - Current line won't be trashed during block marking. - Fixed some typos here and there. - Fixed the doubled carets in monitor. - Fixed start/end save addresses in binary dump. [NEW] - Current caret address is now displayed in monitor. - Added the includes files into the sourcecode archive (dunno if it's legal or not but it makes life easier). - bm.l command implemented (longwords binary dump). [MISC] - Renamed executable & sourcecode file from Asm-Pro to AsmPro (Mostly because it's faster to type).

added on the 2005-04-30 21:48:53 by hitchhikr hitchhikr

login