Search the web
Sign In
New User? Sign Up
vmu-dev · The VMU Development list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
VMU tools cause OS problems!   Message List  
Reply | Forward Message #1107 of 1156 |
Re: [vmu] VMU tools cause OS problems!

On Tue, Jul 20, 2004 at 06:59:15PM -0000, harry_dodgson wrote:
> Has anyone tried to build something significant with VMUscript
> or VMUASM? As my .S source file approaches 40K, my Windoze systems
> keep crashing. Sometimes it compiles okay and then assembles okay -
> most times it doesn't. It is getting annoying. You would think in
> this age of gigabyte RAM that I could create a 24K VMU file without
> rebooting the system frequently.

As far as I know VMUASM is just the normal aslc86k from Marcus Comstedt
compiled for DOS. Version 1.9 of this has some problems if you use macros.


> Is there a VMU assembler available for Solaris or MacOS anywhere?

The sourcecode for aslc86k can be downloaded at Marcus website at
<http://mc.pp.se/dc/sw.html> as VMS Assembler. A patch to fix the macro
problem is below

Soeren

diff -u aslc86k-1.9.orig/macro.c aslc86k-1.9/macro.c
--- aslc86k-1.9.orig/macro.c Thu Nov 11 23:47:33 1999
+++ aslc86k-1.9/macro.c Tue Oct 17 15:34:31 2000
@@ -41,9 +41,9 @@
nummacargs++;
if(macargbufuse+l>=macargbufmax)
if(macargbuf)
- macargbuf=realloc(macargbuf, macargbufmax=min(macargbufmax<<1,
macargbufuse+l+1));
+ macargbuf=realloc(macargbuf, macargbufmax=macargbufuse+l+1);
else
- macargbuf=malloc(macargbufmax=min(256, l+1));
+ macargbuf=malloc(macargbufmax=l+1);
if(!macargbuf) {
fprintf(stderr, "Fatal: Out of memory!\n");
exit(2);



Wed Jul 21, 2004 4:08 pm

sgust@...
Send Email Send Email

Forward
Message #1107 of 1156 |
Expand Messages Author Sort by Date

Hi, Has anyone tried to build something significant with VMUscript or VMUASM? As my .S source file approaches 40K, my Windoze systems keep crashing....
harry_dodgson
Offline Send Email
Jul 20, 2004
7:00 pm

... As far as I know VMUASM is just the normal aslc86k from Marcus Comstedt compiled for DOS. Version 1.9 of this has some problems if you use macros. ... The...
Soeren Gust
sgust@...
Send Email
Jul 21, 2004
4:09 pm

Hi, Thanks! I compiled it under Solaris and it successfully assembled the code that caused problems. Harry ... wrote: [snip] ... [snip] ...
Harry Dodgson
harry_dodgson
Offline Send Email
Jul 22, 2004
3:34 pm

Hi again, I compiled it with DJGPP v2.02 and for some reason it doesn't like a label as the first line of an included file. That never happened before. Must...
Harry Dodgson
harry_dodgson
Offline Send Email
Jul 23, 2004
1:03 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help