У нас вы можете посмотреть бесплатно Cosmac ELF, computing with 8 bit machines или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
I built a Cosmac ELF clone. This is an 8 bit machine with CDP1802 CPU. The clock speed is 1MHz Thank you to the author who designed to the PCB https://github.com/tebl/RC1802-Cosmac... I make a first program add two numbers 20 + 25 ORG 0000H ; Program start address LDI 14h ; Load immediate 14h into D (20 in decimal) ADI 19h ; Add immediate 19h to D (25 in decimal; 14h + 19h = 2Dh, which is 45 in decimal) STR E2h ; Store the content of D into the HEX display buffer at address E2h OUT 4 ; Output operation: the content of the buffer is sent to the HEX display