Внезапно BASIC

Использование и разработка софта (преимущественно на ПЦ)

Moderator: Shaos

User avatar
MC68k
Retired
Posts: 1328
Joined: 25 Jul 2011 00:14
Location: WWW

Внезапно BASIC

Post by MC68k »

http://www.vintage-computer.com/vcforum ... O-COMPUTER
I finally found on the net the following excellent Basic routine written by R. Broucke at the University of Texas, Austin, which has been tested on several 80's 8-bit PCs to compare their speed and accuracy, measuring the propagation error due to the lack of mantissa precision.

Code: Select all

S = 0
X = 0
For I = 1 To 1000
S = S + X * X
X = X + 0.00123
Next I
Print S,X
End
надо бы запустить этот тест на дружественный ресурс, пусть свой фетиш потестят :lol:
User avatar
Lavr
Supreme God
Posts: 16689
Joined: 21 Oct 2009 08:08
Location: Россия

Post by Lavr »

Интересно, что автор этого Homemade Z80/AM95 8-bit NANO COMPUTER

Image

тот же самый итальянец Gianluca.G., что сочинил так понравившийся
мне APOLLO181 - a homemade 4-bit TTL Processor

Image

Видно, что свой стиль у человека есть! :D

А вот сайт APOLLO181 - похоже подзагнулся... Хорошо, что я вовремя его целиком
скачал со всеми интересными мне прибамбасами...
iLavr
antsnark
Doomed
Posts: 434
Joined: 27 Jan 2010 03:45
Location: 83.149.9.42

Post by antsnark »

Great Cow Basic for PIC and AVR

http://gcbasic.sourceforge.net/about.html
Great Cow BASIC is a set of open source BASIC programming tools for Microchip PIC and Atmel AVR microcontrollers:

Great Cow BASIC has been written with three main aims – to remove the need for repetitive assembly commands, to produce efficient code, and to make it easy to take code written for one chip and run it on another. It hides many of the more confusing parts of microcontroller programming, making it suitable for beginners and those who don’t like assembly.
Image