Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Quigibo

Pages: 1 ... 103 104 [105] 106 107 ... 135
1561
The Axe Parser Project / Re: Axe Parser
« on: May 09, 2010, 11:54:58 am »
Yeah, its the lowercase b.  I added the lowercase toggle to the parser options menu for this reason and I think lowercase letters will be used in the future.  There just simply aren't enough tokens available, let alone ones that make sense in most situations.  I also hate having the lowercase alpha on by default, but I don't mind toggling it while writing a program.  Is there another reason you're against it?

1562
The Axe Parser Project / Re: Axe Parser
« on: May 06, 2010, 11:31:28 pm »
Oh yeah.  The only problem is like you said, I have to initialize it at the beginning and then preserve it throughout the code.  Its doable, but I'm not sure how easy it will be.  I'll just wait until I get to that part and then decide if it is simple enough to do it that way.  It would be 4 bytes to initialize it and then 2 bytes to preserve it each drawing command that uses it.  And since this is a very advanced feature anyway, I'm not sure how much it would be used and I don't want to add too much baggage on the normal code size.

Also, I noticed that there is a built-in bcall for division, so that should reduce the size a lot.  Even though the bcalls are generally slower, its using an 16/8 bit routine for smaller numbers instead of the standard 16/16 bit division, so it comes out to the same speed anyway.  I can also generalize this to modulus.

calc84, I have a question.  Do you know if the _HomeUp bcall is supported on all of the 83+ OS's?  I remember it used to not be in the include file or something so I don't know if it was only added after a certain point.  Maybe I'm just crazy and imagining this.

As you can tell, I've been going though the bcall list and I've found a lot of good ones.  However, I don't ever want to compromise speed so most of them won't cut it.

1563
The Axe Parser Project / Re: Axe Parser
« on: May 06, 2010, 03:26:01 am »
hmm... but its the same size to do:
ld a,(var)
and
ld a,(ix+var)
So I don't think it makes a difference.  Don't forget, the byte commands need to use the "a" register, not "hl".

By the way, I don't think my original plan to use flags for the conditionals is going to work, but at least the "and" "or" and "xor" commands are half of what they were.

1564
The Axe Parser Project / Re: Features Wishlist
« on: May 06, 2010, 03:22:23 am »
I'll be adding it soon, I'm still looking for a good token for it...

DJ, I was at first thinking of making the revised drawing commands draw to both buffers, but I think it will be more flexible to do it separately.

1565
Portal X / Re: Portal X
« on: May 05, 2010, 05:59:05 pm »
In apps, the limit is 16kB for executable code, but you have to do page swapping for anything after that.  I'm pretty sure you can still do page swapping in regular programs though, but its really hard.

Builderboy, there is a way to reduce the code by about 30-40% using "byte mode" which is something I plan to add later on.  It will allow you to switch into and out of a mode where the parser will read instructions as single byte instructions instead of 2 byte instructions.  This makes these commands about twice as small and twice as fast.  Also, in the next version, I will be adding a new "and" "or" and "xor" for a size reduction when you have Boolean conditions in your expressions (arguments always evaluate to 1 or 0)

1566
The Axe Parser Project / Re: Features Wishlist
« on: May 05, 2010, 02:06:07 pm »
Yeah, I'm definitely going to be working on the grayscale commands this version.  What that means, is that every drawing command will eventually be able to draw to either buffer.  So if you want to draw a grayscale sprite, you first draw the black part to the first buffer and then the gray part to the second buffer.  Like this:

:Pt-On(X,Y,Pic1)
:Pt-On(X,Y,Pic2)r

However, just to save space, I am going to have the grayscale drawing and the regular drawing use the same routine, but just jump into the code with a different buffer.  This will unfortunately make the current drawing routines about 5 bytes larger even when you don't use grayscale, but it makes it much smaller when you do need it.  BUT, I might also share all the different sprite drawing routines with each other so that might actually reduce the size if you use different drawing methods in the same program.  I'm not 100% sure what is going to happen, but I will try to make them take the least amount of space possible.

I am also going to test a very limited and special case of look-ahead parsing for pointers.  I am estimating it will reduce executable size by about 2-5% in programs that use pointers frequently.

1567
Portal X / Re: Portal X
« on: May 05, 2010, 02:20:42 am »
Cool!  Also, I noticed that you got the portals to animate at different speeds, very nice.

1568
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 11:37:37 pm »
Yeah, all other areas are safe from mirage, but may not be safe for other things.  All of those specifics are documented in the commands list.

1569
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 11:31:15 pm »
Mirage sets up an interrupt table with it's own interrupt routine.  So if you happen to write over that, bad code can execute in the middle of your program whenever an interrupt is called.

1570
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 11:14:24 pm »
I'll put a note in the readme, that's a good idea.  But I won't block its usage because it might be useful for programs that need to change MOS variables as part of the program.

1571
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 06:45:57 pm »
Yeah, every single subroutine I have I list the input, output, flag states, and sometimes a description of what should happen.  It wasn't like that before this update though becasue before, I had only done this to about 50% of the subroutines.  Now its about 90%.  Does the new version compile your code alright?

1572
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 06:27:47 pm »
I'd say maybe 6.  There are a few places I pull some messy tricks, and not everything is templated yet, but its much better than before for sure.

LOL! The bug was exactly the same as last time!  I found another place I was checking for a bracket instead of a brace.  I have to memorize which one is which x.x.  I'm re-uploading right now.  You'll have to re-download it again.  I'm sorry guys!

EDIT: Okay, try it now.

1573
The Axe Parser Project / Re: Bug Reports
« on: May 04, 2010, 06:17:32 pm »
Hmm... I'll look into this.

1574
Axe / Re: Signed Comparison Broked
« on: May 04, 2010, 01:06:30 pm »
Well, I couldn't find a way to do it with high and low comparisons separately.  Here is what I'm using now.  I might be able to optimize it using the parity flag, but I'm avoiding absolute jumps at the moment.

Code: [Select]
p_SIntGt:
ex de,hl
xor a
ld b,h
sbc hl,de
ld h,a
rra
xor b
xor d
rlca
and 1
ld l,a
p_SIntGe:
xor a
ld b,h
sbc hl,de
ld h,a
rra
xor b
xor d
rlca
sbc a,a
inc a
ld l,a
p_SIntLt:
xor a
ld b,h
sbc hl,de
ld h,a
rra
xor b
xor d
rlca
and 1
ld l,a
p_SIntLe:
ex de,hl
xor a
ld b,h
sbc hl,de
ld h,a
rra
xor b
xor d
rlca
sbc a,a
inc a
ld l,a

BuckeyeDude, do you have a routine smaller than this?  These are 12 and 13 bytes depending on if they need the exchange.

1575
News / Re: The end of Revsoft?
« on: May 04, 2010, 12:46:24 pm »
I hope it comes back, even if not in the same form or domain.  They had a really great team of programmers and some of the coolest projects there and it was one of the few places where I could get really advanced assembly help.

Pages: 1 ... 103 104 [105] 106 107 ... 135