x16 processor compared? Youtube videos found

Chat about anything CX16 related that doesn't fit elsewhere
Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »


I wanted to know how powerful the x16 was and this is all I found.





 

Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »






 I

Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »






 

Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »


Just more newby stuff.





 

rje
Posts: 1263
Joined: Mon Apr 27, 2020 10:00 pm
Location: Dallas Area

x16 processor compared? Youtube videos found

Post by rje »


First, meaningful comparisons are done based on the whole system.  So you have to take all of his videos into account.

 

It's more powerful than the C64.  It has five times the voices, but no envelope control.  256 colors and VGA.  32 times the ROM.  8 times the RAM (for starters).  Modern storage options. 

Nowhere near as powerful as the MEGA 65, though.

I think the 8 Bit Guy also made some comparisons with Intel 286 systems, say somewhere around 12 Mhz, but that's with all the nifty features rolled in, NOT a raw performance comparison.

 

Commodore 64

Commodore 128

Commodore 65 (might approach the power of a low-end 8086, maybe)

Intel 8086 systems

Commander X16 ~~~ Intel 286 system 

Intel 386SX

MEGA 65

C256 Fenix

 

 

Wavicle
Posts: 277
Joined: Sun Feb 21, 2021 2:40 am

x16 processor compared? Youtube videos found

Post by Wavicle »


The intention here is good, but the execution falls short across the board.

Comparing one processor against another is a hard problem and we've known this for a long time. We have come up with synthetic benchmarks which attempt to answer the question in a reasonable manner, but they aren't perfect, and we know this also. The absolute worst way to compare CPUs is to look at micro-kernel operations whose performance can vary drastically depending on the execution context and that is exactly what happens here. Is it surprising that the 65C02 beats the 68000 when doing a single simple 8 bit operations in a 16 bit memory space? It shouldn't. What happens if you stay in that execution context but calculate an 8 bit CRC over a 4K buffer? Is the 65C02 still going to beat a 68000? It might, I'm not sure - but looking at very simple operations will not tell you that.

Similar story for graphics - you cannot just say the Amiga is better because it has the blitter and Copper. For starters, the Copper generally won't do anything for you here. If you were to look at small operations, I don't think you would be led to believe that the Amiga would win. E.g.: setting a single pixel - because of the way the Amiga's bit planes are laid out, setting a single pixel is a painful process and the blitter isn't going to help you get it done faster. Painting a 128x128 visual element moving across the screen would be helped by the blitter but the CX16 could handle that element as several sprites and "painting" it would only involve updating a set of sprite location registers. I think Amiga vs. CX16 bitmap graphics dominance would be a difficult call to make -- I'm not entirely certain which context the Amiga would be the clear winner in but it would probably be something like "32 color graphics" because the CX16 doesn't have such a mode. The blitter addresses shortcomings in the Amiga that the CX16 doesn't have (e.g. most bit blit operations on the Amiga will require read-modify-write compositing operations at the left and right edges of the element being blitted and anywhere there is a transparency mask but CX16 in 256 color mode never has to do that).

Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »


I get systems over all had pluses and minuses. The CX-16 is a neat project and system. I hope the basic good or better than the commodore plus. And looking at these videos I get the idea that the 65C02 has some advantages in a small instruction set similar to RISC in that it is such a small chip.





 

BruceMcF
Posts: 1336
Joined: Fri Jul 03, 2020 4:27 am

x16 processor compared? Youtube videos found

Post by BruceMcF »


Or you could have gone to the discussions here of those videos from the time that one of the members of this site first posted them to youtube.

The IBM PC was not a rocket ship take-off in the personal computer market because its performance was astounding. It was a massive success because at the time the saying was "nobody every got fired for buying IBM" ... when corporations were buying minicomputers and mainframes ... and so IT people could respond to a task best served with a PC by putting an IBM PC on people's desks, and people in corporations could get their IT people to buy an IBM PC to put on their desk, and then people started buying them for the home to match the one they had at work. So it's not shocking that an 8bit "dream computer" can in many circumstances outperform one of the 8bit data bus IBM personal computers (PC/XT).

TomXP411
Posts: 1760
Joined: Tue May 19, 2020 8:49 pm

x16 processor compared? Youtube videos found

Post by TomXP411 »



8 hours ago, rje said:




First, meaningful comparisons are done based on the whole system.  So you have to take all of his videos into account.



 



It's more powerful than the C64.  It has five times the voices, but no envelope control.  256 colors and VGA.  32 times the ROM.  8 times the RAM (for starters).  Modern storage options. 



Nowhere near as powerful as the MEGA 65, though.



I think the 8 Bit Guy also made some comparisons with Intel 286 systems, say somewhere around 12 Mhz, but that's with all the nifty features rolled in, NOT a raw performance comparison.



 



Commodore 64

Commodore 128

Commodore 65 (might approach the power of a low-end 8086, maybe)

Intel 8086 systems

Commander X16 ~~~ Intel 286 system 

Intel 386SX

MEGA 65

C256 Fenix



Yeah, I did some comparison testing using my favorite prime number algorithm and an (allegedly) cycle accurate emulator. My results suggested about a 2.3:1 performance ratio (meaning the 6502 does in 1 clock cycle what the 8088 does in 2.3.)

The Z80 has a similar performance ratio, so in both cases, you can expect an 8MHz 6502 to be roughly equivalent to an 18MHz 8088 or Z80 computer. 

This isn't because the 6502 is some sort of super chip. It's because the 6502 simply splits the clock into two phases, and it performs one operation per phase, rather than one operation per tick.

Let's look at a memory read operation:


  1. CPU Sets the address being accessed


  2. Memory sets the data bus


  3. CPU reads the data bus


On a Z80, this requires a minimum of 2 clock cycles (the instruction fetch): On the first cycle, the CPU sets the memory address, and the memory chips are expected to set the data bus on the falling edge of the clock. Then the CPU reads the data bus on the next cycle. Note the very short "IN" block in this diagram:

Z80 Special Reset

 

 

On the 6502, we don't deal in clock cycles, so much as phases, called PHI1 and PHI2. Each clock tick has two phases, and each phase can have two operations happening. So during PHI1, the CPU is setting the address bus, and it can read the data bus during the second half of PHI2. So notice how the phases of a 6502 correspond almost exactly to the clock cycles of the Z80 or 8080.

Image

 

This is why it's a little unfair to compare clock speeds of 6502 and 8088 systems, without taking the difference in cycle times into account. Since the 6502 doubles the clock internally, it's more correct to say the Commodore 64 has a phase clock of 2MHz. And when you start looking at things from that perspective, the Z80 and 6502 suddenly are much more similar in terms of performance. 

Having said all of that - the Z80 and 8088 still use extra cycles for instruction decoding. The 6502 actually has some primitive pipelining, and the instruction decode happens in parallel with the read of the first data byte of an instruction. This is the place where the 6502 is arguably better designed, since the Z80 uses two clock cycles to decode the opcode, and a minimum of 3 more ticks to fetch the first data byte (although there are several instructions that do not need operands.)

So while your typical single-operand Z80 instruction takes 5 clock cycles, the 6502 can do a single-operand operation in 2 clock cycles. Hence the myth that the 6502 is 2.5x more efficient than the Z80. It's actually not - it's just that you have to compare a 1MHz 6502 to a 2MHz Z80 to have a fair comparison.

 

 

 

 

Travis Bryant moore
Posts: 124
Joined: Sun May 30, 2021 5:00 pm

x16 processor compared? Youtube videos found

Post by Travis Bryant moore »


That was interesting. But I wonder if scaling is a factor in over all systems take the C64 DTV where you have everything in an all in one chip that is many times smaller compared to the C64 bread box or even the C64 ultimate elite. Is it faster or better to miniaturize the entire machine or emulate it in an fpga or ASIC? I just think that when you have everything closer together you save time and energy in smaller form factors. And I think I heard 8 bit guy mention the Asic route if it sells good for the cx 16.

Post Reply