This simulator implements the Exidy tape file format, so it's not directly portable to other systems. However, it could be adapted. I don't know C64 nor Spectrum well, but I suspect there are already...
Type: Posts; User: Citabria
This simulator implements the Exidy tape file format, so it's not directly portable to other systems. However, it could be adapted. I don't know C64 nor Spectrum well, but I suspect there are already...
In model II (48K) Sorcerers, the cassette interface is on the motherboard, so the Teensy must connect directly to the UART:
Remove the power supply daughterboard. Remove the UART IC from its...
Wiring diagram for early (32K) Sorcerers:
Remove cassette interface daughterboard and connect Teensy as shown:
18066
Thanks!
At 20833 baud with 2 stop bits, the transfer rate is 1.85K bytes/sec. I don't know what the typical rate was for CP/M machines but the Atari 810 was about 1.0 and the CBM 1541 about 0.5...
Cool! What do the other 3 knobs do? What does the blue circuit board do?
I meant to say that CD WAV file loading is less than reliable. Teensy has proven quite reliable.
The Exidy Sorcerer (http://oldcomputers.net/sorcerer.html) is an early personal computer, arriving in 1978 on the heels of the Apple II, TRS-80, and PET. It features a 2 MHz Z80, up to 48K RAM, ROM...
Failed to find that post again, but found this one which confirms that const is what matters on Teensy....
const is fine for named constants, but what about literal constants? Can't find the post now but thought Paul said they use RAM by default.
Thanks, that makes sense.
Thought I read here recently that constants go into RAM too unless you F() them. Shame. Not the case with AVR?
Not a bug report probably, but I'm curious about Teensy RAM ("dynamic memory") usage in Teensyduino.
When I compile the Blink example for the Arduino Mega 2560 under Arduino 1.8.8 and Teensyduino...
Do some distributors choose not to include the pinout card?
Nice job on the emulators! Thank you for bring the wonderful Ataris to the amazing Teensy.
Your demo videos could use some improvement, though, especially the sideways one. Perhaps some narration,...
Amen, brother!
Wow, Frank B, I also learned 6502 (Atari 400) and Z80 (ZX81) assemblers, and worked on CDC Cyber, in college! Later, at work, I developed microcontroller systems with Z80, Intel 8048, 8041, 8051, and...
over at Sparkfun. 3.5, 3.6, and some others are 20% off:
https://www.sparkfun.com/categories/267
Yes, so many factors can affect performance. But it appears from kinetis.h that Paul has made some choices based on experience, or testing, or manufacturer specs. Apparently, F_MEM must be an integer...
Well, I just discovered that there are links in that tech spec table! When I click on Bandwidth, I get:
So the question now becomes: How does that value relate to F_MEM in kinetis.h ? There's...
In the tech specs https://www.pjrc.com/teensy/techspecs.html, what does Bandwidth mean, exactly?
Is it just Bus Clock (words/sec) * 4 (bytes/word) ? If so, is the 192 MB/s value for T3.5 correct?...
Thanks again. I selected the port you mentioned and it works. The other port was left over from the Arduino Nano I had plugged in before.
Nice work on the Teensy BTW!
Maybe not so painless. I installed Teensyduino 1.16 over Arduino 1.0.5 on Mac OS X 10.6.8 and the Blink sketch works. I can modify it and download and run it but when I try the serial monitor I get...
Thanks. I found a tutorial for noobs like me which describes Paul's suggestion:
http://rcarduino.blogspot.com/2012/09/how-to-view-arduino-assembly.html
Someday I might try working outside the...
In Teensyduino, is there a way to view the assembly code produced by the compiler?
Thanks!!!!
I just tried it and it seems to work. I added __asm__("ldr r0,[r1]\n\t"); to the Blink example and it compiled.
Is there documentation somewhere about which registers are OK to modify and how to...
Hi. First-time poster here.
Does Teensyduino C support the asm statement to embed ARM code for a Teensy3?
If not, can C code be written to compile to a very tight loop, say ~5 cycles? Example...