Search found 73 matches

by norecess
Thu Mar 28, 2013 4:06 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

yes. it was too hard to maintain a community around it. my conclusion on this work : making a general purpose framework for 8 bits machines is bad idea ; it results un-optimized code (because of the 'generic' constraints).

www.norecess.net
by norecess
Thu Mar 28, 2013 3:42 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

It's no longer supported for a long time.. sorry ! :)
by norecess
Wed Jul 23, 2008 4:54 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

If you failed trying running the beast, contact me (my mail is shown at arnaud.storq.googlepages.com). I will send you the stuff
by norecess
Mon Jul 21, 2008 4:31 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

For (ugly) source-code, check here http://arnaud.storq.googlepages.com/crocolib (svn repository is shown there)
by norecess
Mon Jul 21, 2008 3:45 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

Video ! http://fr.youtube.com/watch?v=HIaVST3ycCY

Bad quality, sound desync, but at least it gives an idea.
by norecess
Mon Jul 21, 2008 1:18 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

I will put here in few days the YouTube video of the demo ! :o)

Under WinAPE, CRTC3 + Enable Plus + Enable PPI should be OK, but perhaps I am missing something.
by norecess
Sun Jul 20, 2008 10:47 pm
Forum: Misc
Topic: A bit of advertising for you :)
Replies: 11
Views: 15962

A bit of advertising for you :)

Hi guys, I just finished my Amstrad CPC demo (Plus machines) ! It's completely done using z88dk. This is going to have an impact on Amstrad CPC demoscene, as this is the real first C demo for it. For that purpose, I decided to write comments about z88dk/CPC here : http://arnaud.storq.googlepages.com...
by norecess
Thu Jun 12, 2008 2:06 pm
Forum: Amstrad
Topic: Fixed: "Press play then any key" with file operations
Replies: 1
Views: 8245

Fixed: "Press play then any key" with file operations

Yop, The problem : when loading the binary generated by z88dk from BASIC, fopen operations are working OK. But when executing the z88dk binary directly as an executable, it fails its loading by displaying the "press play then any key" message. The solution : Got it ! I had to ask to an Ams...
by norecess
Fri Jun 06, 2008 9:07 pm
Forum: Misc
Topic: Please, release more often !
Replies: 4
Views: 8533

Please, release more often !

Hi there,

Could be nice to get a release at a more quickly rate.. :)

"release often" is the way :) your users won't never be disappointed even if there are few features / bug fixes and so on.

:)
by norecess
Fri Jun 06, 2008 9:06 pm
Forum: z88dk-developers
Topic: [z88dk-dev] Amstrad CPC
Replies: 1
Views: 4371

Hi, First, on CPC platforms you should never play with interrupts. You can not access system features (loading a file, changing video mode..) by disabling them. I noticed by disassembling a z88dk compiled program, than a DI instruction is made before entering main( ). I also noticed the EI after lea...
by norecess
Tue Jun 03, 2008 8:10 pm
Forum: Misc
Topic: Global initialization, way to gain memory ?
Replies: 2
Views: 6759

Thank you, that's exactly the behavior I expected :)
by norecess
Tue Jun 03, 2008 5:47 pm
Forum: Misc
Topic: Global initialization, way to gain memory ?
Replies: 2
Views: 6759

Global initialization, way to gain memory ?

Hi there,

Does the next code..

Code: Select all

static int g_globalVar = 4;
..takes less memory space than..

Code: Select all

static int g_globalVar;
void init( )
{
    g_globalVar = 4;
}
because in the first sample the value is directly written at the good memory location of g_globalVar variable ?

Thank you,
Arnaud
by norecess
Thu May 29, 2008 8:05 pm
Forum: Misc
Topic: Simple debugger in 1.9???
Replies: 7
Views: 11973

This is off-topic, but I sent here a trick to enable pure C assertions (http://www.z88dk.org/forum/viewtopic.php?id=2775). This works conjointly with WinAPE Amstrad CPC emulator.
by norecess
Mon May 26, 2008 8:24 pm
Forum: Misc
Topic: register C instruction?
Replies: 3
Views: 7842

I think I did right posting that question here :)

Thank you,
Arnaud
by norecess
Mon May 26, 2008 6:19 pm
Forum: Misc
Topic: register C instruction?
Replies: 3
Views: 7842

register C instruction?

Hi there,

Could you make a short explanation of the register C instruction, and how it behaves when using it through z88dk ?

Thank you
Arnaud
by norecess
Fri May 23, 2008 4:57 pm
Forum: Amstrad
Topic: Cool trick to share : assert !
Replies: 0
Views: 6788

Cool trick to share : assert !

Yop, When using WinAPE Amstrad CPC emulator, if runned code is 0xED, 0xFF then it activates a Breakpoint and show the debugger. I added the followiing in my z88dk project : #define crASSERT( expression ) \ if ( !( expression ) ) \ { \ asm( "defb $ed, $ff" ); \ } #define crBREAK( ) \ asm( &...
by norecess
Fri May 16, 2008 12:14 am
Forum: Misc
Topic: Just want to let you know z88dk ROCKS !!!
Replies: 3
Views: 7420

You know, what really bores me with asm code is init - always dealing with registers / memory address / etc. I like using C for these stuff, but still keeping my innerloops in pure ASM for performance reasons. As a plus, prototyping in C then optimizing in ASM on same target machines is really nice ...
by norecess
Thu May 15, 2008 6:25 pm
Forum: Misc
Topic: Just want to let you know z88dk ROCKS !!!
Replies: 3
Views: 7420

Yeah, and few weeks after starting using z88dk, I still think z88dk is really a fresh air in z80 development ! :)
by norecess
Thu May 15, 2008 6:21 pm
Forum: Misc
Topic: Trying to embeed ASM code in a C Macro
Replies: 5
Views: 10205

Well, actually it's not an issue anymore. It seems to be a pretty bad design problem from me to try putting everything under asm statement :) BTW, just to bounce on this, know that #define M_OUTP(port,byte) asm("ld\tbc,"#port"\nld\ta,"#byte"\nout\t(c),a\n"); can be writ...
by norecess
Wed May 14, 2008 11:46 pm
Forum: Misc
Topic: How to specify an item to be repeated several times in an ASM buffer?
Replies: 2
Views: 6445

Confirmation :

defs 4, $c5; // push bc * 4

this is ok, thank you!
by norecess
Wed May 14, 2008 11:34 pm
Forum: Misc
Topic: Trying to embeed ASM code in a C Macro
Replies: 5
Views: 10205

I was not able to insert labels in the macro..
by norecess
Wed May 14, 2008 6:56 pm
Forum: Misc
Topic: Trying to embeed ASM code in a C Macro
Replies: 5
Views: 10205

Thank you Dom, I understand the problem.

If I decide to switch for

#define M_OUTP(port,byte) asm("ld\tbc,"#port"\nld\ta,"#byte"\nout\t(c),a\n");

Am I allowed to use address such as .loop dec a\njr nz,loop\n ?

Thank you,
Arnaud
by norecess
Wed May 14, 2008 5:22 pm
Forum: Misc
Topic: How to specify an item to be repeated several times in an ASM buffer?
Replies: 2
Views: 6445

How to specify an item to be repeated several times in an ASM buffer?

Hi there,

How can specify an item to be repeated several times in an ASM buffer?

Something such as REPEAT( 4, 12 ) which would produce the following :

Code: Select all

DEFB 12, 12, 12, 12
Thank you,
Arnaud
by norecess
Wed May 14, 2008 5:18 pm
Forum: Misc
Topic: Trying to embeed ASM code in a C Macro
Replies: 5
Views: 10205

Trying to embeed ASM code in a C Macro

Hi there, Made a long time I did not post around, hehe. :) I have the following working code : ld sp, hl; .lineLoopcount pop hl; ld ( prevSPcount + 1 ), sp; add hl, de; ld sp, hl; push bc; push bc; .prevSPcount ld sp, 0; dec a; jp nz, lineLoopcount; When I try to embeed this code into a macro like t...
by norecess
Mon May 05, 2008 2:25 pm
Forum: Misc
Topic: What is wrong with HALT instruction ?!
Replies: 13
Views: 18221

OK. I would like to check this.. unfortunately, I'm more a SVN user, hehe. Is there a night-build released somewhere ? Thank you.