Search found 4443 matches

by Dbug
Fri Apr 04, 2014 7:51 pm
Forum: C programming
Topic: Problem with the linker ?
Replies: 18
Views: 31651

Re: Problem with the linker ?

I think there is still a bug.. If the first is storing a with sta #y3,y The last should be store with sta #y3,y also. Or the ldy #y3+1 just before is here for nothing :) Yeah obviously the last sta ptr3 was supposed to be sta ptr3,y . That's what happen when answering in a hurry while waiting for a...
by Dbug
Thu Apr 03, 2014 7:53 pm
Forum: C programming
Topic: Problem with the linker ?
Replies: 18
Views: 31651

Re: Problem with the linker ?

Found the bug: Could you give a shot and modify your %OSDK%/macro/MACROS.H Line 665 you have ADDW_III Replace #define ADDW_III(ptr1,y1,ptr2,y2,ptr3,y3)\ clc ;\ ldy #y1 ;\ lda ptr1,y ;\ ldy #y2 ;\ adc ptr2,y ;\ ldy #y3 ;\ sta ptr3,y ;\ ldy #y1+1 ;\ lda ptr1,y ;\ ldy #y2+1 ;\ adc ptr2,y ;\ ldy #y3+1 ;...
by Dbug
Thu Apr 03, 2014 7:40 pm
Forum: C programming
Topic: Problem with the linker ?
Replies: 18
Views: 31651

Re: Problem with the linker ?

Good thing: I managed to reproduce the issue.

I will dig more when I find time (this week is milestone week at work so...)
by Dbug
Tue Apr 01, 2014 8:42 am
Forum: Emulators
Topic: Oricutron 1.0 (EDIT: Now 1.2)
Replies: 214
Views: 221030

Re: Oricutron 1.0 (EDIT: Now 1.1)

I haven't implemented copy/paste on any platform. It was done by mmu_man for beos and other people implemented it for other platforms, so I don't know why only paste was implemented on windows. paste only works when software is reading the keyboard via the built-in rom function. There isn't really ...
by Dbug
Tue Apr 01, 2014 8:03 am
Forum: Emulators
Topic: Visual keyboard for Oricutron
Replies: 16
Views: 25530

Re: Visual keyboard for Oricutron

One of my next work will be to modify the pravetz 8D keymap to make it work as intended. But it's very different than the Atmos' one so I suppose I'll need to modify the keyboard matrix as well isn't it ? Or am I missing something ? The Pravetz keyboard is 100% identical to the Atmos one. The only ...
by Dbug
Sun Mar 30, 2014 10:10 am
Forum: 6502 assembly coding
Topic: How to "rotate" a character..
Replies: 8
Views: 16568

Re: How to "rotate" a character..

Except of course I should have written CMP #32, not 64.
Basically we want the state of the 6th bit in the carry before ROLling, not the state of the bit number 6 :)
by Dbug
Sat Mar 29, 2014 9:10 pm
Forum: Demos
Topic: Born In 1983 - And Oric demo at Solskogen 2013
Replies: 13
Views: 24970

Re: Born In 1983 - And Oric demo at Solskogen 2013

Could you check that this new version works with your Cumulus?
BornIn1983.zip
(32.63 KiB) Downloaded 703 times
by Dbug
Sat Mar 29, 2014 9:09 pm
Forum: 6502 assembly coding
Topic: How to "rotate" a character..
Replies: 8
Views: 16568

Re: How to "rotate" a character..

rol modifies N, but the only thing it uses (enters as low bit) is C.
by Dbug
Sat Mar 29, 2014 8:41 pm
Forum: 6502 assembly coding
Topic: How to "rotate" a character..
Replies: 8
Views: 16568

Re: How to "rotate" a character..

What about something like that:

Code: Select all

and #%00111111
cmp #64
rol
I've not checked if it worked, just what's coming to head :)
by Dbug
Sat Mar 29, 2014 2:00 pm
Forum: Emulators
Topic: Visual keyboard for Oricutron
Replies: 16
Views: 25530

Re: Visual keyboard for Oricutron

I don't want to be annoying, but would be nice if you did not both have the same visual avatar, makes it harder to follow the discussions :)
by Dbug
Thu Mar 27, 2014 8:14 am
Forum: General Discussion
Topic: From bedroom to billions need Oric(s) addicts :)
Replies: 2
Views: 6687

Re: From bedroom to billions need Oric(s) addicts :)

Steve M wrote:Isn't there a way of doing that with Oricutron?
Yes: F10 enables the 'save to AVI' capture.

The only SUPER annoying thing is that it keeps disabling itself if you enter menus...
by Dbug
Sat Mar 22, 2014 2:12 pm
Forum: General Discussion
Topic: Cumulus Preorder Thread
Replies: 272
Views: 424882

Re: Cumulus Preorder Thread

Steve M wrote:Mine has arrived but I didn't know I needed a different power supply so I can't test it yet.
No problem with that, the point is just that if I remove from the list the people who actually received them, it makes the people down the line happy to see there's some progress :)
by Dbug
Sat Mar 22, 2014 11:32 am
Forum: General Discussion
Topic: PDF book about the writing of RType ZX Spectrum
Replies: 6
Views: 9502

Re: PDF book about the writing of RType ZX Spectrum

Cool You could put your blog address under your signature :) Kamelito I hate signatures, it decreases the signal/noise ratio with repetitive things that most people could not care less about, and if they want to know they can check the person's profile :) /me realizes that three out of four persons...
by Dbug
Fri Mar 21, 2014 10:08 pm
Forum: General Discussion
Topic: PDF book about the writing of RType ZX Spectrum
Replies: 6
Views: 9502

Re: PDF book about the writing of RType ZX Spectrum

Yeah I read it last year while commuting, was entertaining.
It's partly what gave me the idea to write on my blog about my videogame stuff :)
by Dbug
Fri Mar 21, 2014 10:06 pm
Forum: Technical questions
Topic: Keyboard partial failure
Replies: 23
Views: 36053

Re: Keyboard partial failure

I don't think there is any existing ROM to test extensively the Oric, but mayby I'm wrong.. Diagnostic ROM This is a replacement 16K ROM image to install on an Oric/Atmos mainboard to perform step-by-step test CPU/ULA/DRAM/VIA/PSG and associated circuitry. Includes schematic for optional external R...