Forum: Coders. General
04 November 2019, 14:11
|
Replies: 27
Views: 7,032
Back in the day I thought about creating a HAM...
Back in the day I thought about creating a HAM converter that could also generate a copper list to assist with the display.
I don't know how poking colour registers half way through a line affects...
|
Forum: Hardware mods
25 October 2019, 12:34
|
Replies: 3
Views: 613
|
Forum: Hardware mods
21 October 2019, 12:49
|
Replies: 137
Views: 16,586
|
Forum: Hardware mods
17 October 2019, 12:10
|
Replies: 60
Views: 13,001
|
Forum: Hardware mods
16 October 2019, 13:40
|
Replies: 7
Views: 695
|
Forum: Hardware mods
02 October 2019, 11:10
|
Replies: 137
Views: 16,586
|
Forum: support.Hardware
23 August 2019, 19:38
|
Replies: 6
Views: 310
|
Forum: support.Hardware
23 August 2019, 14:16
|
Replies: 6
Views: 310
Hmm, maybe it was CPU slot them, same as the...
Hmm, maybe it was CPU slot them, same as the A1200.
I ask because I'm thinking about a possible AR style remote debugger. Lack of custom chip spying wouldn't be a big issue, but lack of the level...
|
Forum: support.Hardware
23 August 2019, 13:20
|
Replies: 6
Views: 310
|
Forum: support.Hardware
23 August 2019, 11:26
|
Replies: 6
Views: 310
Zorro III Action Replay
I read that there was an unreleased Action Replay for the A3000.
The A3000 has Zorro III and my understanding was that Zorro III doesn't pass writes to custom chip registers to the backplane.
...
|
Forum: Coders. General
23 August 2019, 11:04
|
Replies: 6
Views: 592
|
Forum: Coders. General
22 August 2019, 10:56
|
Replies: 28
Views: 4,505
|
Forum: Hardware mods
20 August 2019, 18:44
|
Replies: 137
Views: 16,586
The other advantage being that you don't also...
The other advantage being that you don't also need a backplane, it can be like the A2000 with the slots on the main board.
I wonder if the backplane was just because they needed space on the...
|
Forum: Hardware mods
20 August 2019, 11:27
|
Replies: 137
Views: 16,586
|
Forum: Hardware mods
19 August 2019, 11:47
|
Replies: 137
Views: 16,586
|
Forum: Coders. Asm / Hardware
19 August 2019, 11:37
|
Replies: 95
Views: 7,129
Gods is one of the best games ever made!
I...
Gods is one of the best games ever made!
I think it really depends what type of game you prefer. There is certainly no equivalent to Mario on the Amiga, but also there is nothing like Gods on the...
|
Forum: Coders. Asm / Hardware
16 August 2019, 12:02
|
Replies: 95
Views: 7,129
|
Forum: Coders. Asm / Hardware
16 August 2019, 11:58
|
Replies: 95
Views: 7,129
European and US developers had a very different...
European and US developers had a very different style. They just didn't do that Japanese style of platform and shumup game. Occasionally they came close, Apidya for example, but usually they ended up...
|
Forum: Coders. Asm / Hardware
15 August 2019, 19:26
|
Replies: 95
Views: 7,129
|
Forum: Coders. Asm / Hardware
15 August 2019, 11:39
|
Replies: 95
Views: 7,129
|
Forum: Coders. Asm / Hardware
14 August 2019, 19:03
|
Replies: 95
Views: 7,129
It looks visually impressive, and the player...
It looks visually impressive, and the player enjoys having a huge amount of firepower at their disposal, and feels skillful at avoiding a screen full of bullets and enemies.
Really hardware was...
|
Forum: Coders. Asm / Hardware
14 August 2019, 16:12
|
Replies: 95
Views: 7,129
|
Forum: Coders. Asm / Hardware
14 August 2019, 11:31
|
Replies: 95
Views: 7,129
I meant you can pipeline the generation of the...
I meant you can pipeline the generation of the grid address on an A1200... Although I'm starting to wonder if I was right, I forgot there is no swap.w op-code.
But actually there is a better way...
|
Forum: Coders. Asm / Hardware
13 August 2019, 11:37
|
Replies: 95
Views: 7,129
Have a look at the video I posted. It IS very...
Have a look at the video I posted. It IS very inaccurate, but that's the trade-off that Konami made. It favours the player and the game is still a classic and immensely fun.
Very few games have...
|
Forum: Coders. Asm / Hardware
13 August 2019, 11:32
|
Replies: 95
Views: 7,129
"Calculating" the grid coordinate is trivial....
"Calculating" the grid coordinate is trivial. Simply discard the lowest 3 or 4 bits of the X and Y coordinates (depending on your grid size) and combine into a single word. There is some overhead but...
|
Forum: Coders. Blitz Basic
13 August 2019, 11:25
|
Replies: 58
Views: 4,413
|
Forum: Coders. Asm / Hardware
12 August 2019, 17:38
|
Replies: 95
Views: 7,129
|
Forum: Coders. Asm / Hardware
12 August 2019, 11:23
|
Replies: 95
Views: 7,129
Then you are doing it wrong ;-)
Bounding box...
Then you are doing it wrong ;-)
Bounding box looks like this:
if (x >= box_left) && (x <= box_right) && (y >= box_top) && (y <= box_bottom)
Where as grid looks like this:
if (player_grid...
|
Forum: Coders. General
12 August 2019, 11:13
|
Replies: 26
Views: 1,862
|
Forum: Coders. Asm / Hardware
11 August 2019, 12:44
|
Replies: 95
Views: 7,129
|
Forum: Coders. Blitz Basic
09 August 2019, 11:32
|
Replies: 58
Views: 4,413
|
Forum: Coders. General
09 August 2019, 11:18
|
Replies: 28
Views: 4,505
|
Forum: Coders. General
08 August 2019, 12:58
|
Replies: 28
Views: 4,505
Obviously you must pipeline as best you can,...
Obviously you must pipeline as best you can, rather than just start the blitter than then busy wait. If you do it right it's going to be a lot more efficient than entering and exiting an interrupt.
...
|
Forum: Coders. General
07 August 2019, 12:06
|
Replies: 28
Views: 4,505
|
Forum: Coders. General
06 August 2019, 10:57
|
Replies: 152
Views: 12,415
|
Forum: Coders. General
02 August 2019, 16:09
|
Replies: 152
Views: 12,415
Are you use? I just checked the CPS-2 ROM and...
Are you use? I just checked the CPS-2 ROM and it's 7 MB of data, assuming each chip is 100% full. That includes all the sound and graphics for stages etc, plus 12 characters.
For confirmation the...
|
Forum: Coders. General
02 August 2019, 12:08
|
Replies: 152
Views: 12,415
Nice work. How much RAM are you using for that...
Nice work. How much RAM are you using for that sprite?
4 channels of audio turned out to be a bit of a bottleneck. Seemed incredible at the time but if you need two channels for sound effects (one...
|
Forum: Coders. Asm / Hardware
23 July 2019, 10:49
|
Replies: 38
Views: 2,025
|
Forum: Coders. Asm / Hardware
22 July 2019, 19:31
|
Replies: 38
Views: 2,025
Ah, that's probably it. It was a long time ago...
Ah, that's probably it. It was a long time ago but I was developing the MHI driver for DCR's parallel port device when I first noticed it. Some 030s would barely see any noticeable load, some would...
|
Forum: Hardware mods
22 July 2019, 11:22
|
Replies: 182
Views: 14,426
Some of the errors may be down to how Kicad...
Some of the errors may be down to how Kicad handles power. If something is marked as a power pin the whole net needs to be connected to something marked as a power supply. There is a "pwr_flag" that...
|