0 Members and 1 Guest are viewing this topic.
Quote from: JosJuice on December 31, 2010, 05:15:36 pmQuote from: Hot_Dog on December 31, 2010, 05:01:38 pmSorry if this was already answered, but do we know the speed and type of processor that the Prizm has?SuperH 3, running at 29 MHz (speed can be increased).How much can it be increased? 29 MHz is SO SLOW!
Quote from: Hot_Dog on December 31, 2010, 05:01:38 pmSorry if this was already answered, but do we know the speed and type of processor that the Prizm has?SuperH 3, running at 29 MHz (speed can be increased).
Sorry if this was already answered, but do we know the speed and type of processor that the Prizm has?
Or we could have it perform some counting function and record how long it takes. It'd be interesting to see what happens if you set the Frequency to 0x111b instead of the maximum of 0x101b.* Qwerty.55 nominates FinaleTI's Prizm.
Yep, it does. I'd hope so, at least. The BRK command will turn the processor off until the next interrupt
Quote from: Qwerty.55 on December 31, 2010, 03:37:53 pmQuote from: z80man on December 31, 2010, 03:30:52 pmPrizm Code: [Select]ClsFor 0 -> A To 1000 Black "ANextOptimized for ya How do you set the increment to something other than +1? I'm guessing Code: [Select]For 1000 ->A To 0 Step -1Also I optimized the TI code to use output instead of disp and now the TI-84+ SE finished the loop while the Prizm(with optimized for loop) was only on 740. The while loop on the Prizm though is just barely slower than the for loop
Quote from: z80man on December 31, 2010, 03:30:52 pmPrizm Code: [Select]ClsFor 0 -> A To 1000 Black "ANextOptimized for ya
Prizm Code: [Select]ClsFor 0 -> A To 1000 Black "ANext
ClsFor 0 -> A To 1000 Black "ANext
For 1000 ->A To 0 Step -1
Quote from: Hot_Dog on December 31, 2010, 05:17:30 pmQuote from: JosJuice on December 31, 2010, 05:15:36 pmQuote from: Hot_Dog on December 31, 2010, 05:01:38 pmSorry if this was already answered, but do we know the speed and type of processor that the Prizm has?SuperH 3, running at 29 MHz (speed can be increased).How much can it be increased? 29 MHz is SO SLOW!It can be increased up to 6 times the base frequency, which is 178 MHz (although the manufacturer claims it has a ceiling of 200 MHz). You do this by manipulating the frequency control register, which is a two byte register controlling the internal clock frequency ratio, the peripheral clock frequency ratio, and the frequency multiplier. Each of those attributes is given three bits and I'll designate them A1,2,3, B1,2,3, and C1,2,3 respectively, where the lowest number signifies the most significant bit.<snip>
Quote from: z80man on December 31, 2010, 03:54:56 pmQuote from: Qwerty.55 on December 31, 2010, 03:37:53 pmQuote from: z80man on December 31, 2010, 03:30:52 pmPrizm Code: [Select]ClsFor 0 -> A To 1000 Black "ANextOptimized for ya How do you set the increment to something other than +1? I'm guessing Code: [Select]For 1000 ->A To 0 Step -1Also I optimized the TI code to use output instead of disp and now the TI-84+ SE finished the loop while the Prizm(with optimized for loop) was only on 740. The while loop on the Prizm though is just barely slower than the for loopSo... are you saying that TI BASIC @ 15MHz is faster than the Casio BASIC @ 29MHz?All of the sudden, I'm not very impressed... but I will wait for more data.
The processor starts failing to read correctly from RAM. I'd assume that means you're going to crash something.