Difference between revisions of "S-100 IDE CF v.3"
m |
(added simple test loop .asm) |
||
Line 4: | Line 4: | ||
==Build Notes== | ==Build Notes== | ||
myide.asm Z80. Not 8080/8085 | myide.asm Z80. Not 8080/8085 | ||
+ | |||
+ | <source lang=text> | ||
+ | ; jha 6/27/2015 testport.asm | ||
+ | ; test the S-100 IDE v.3 port addressing | ||
+ | ; | ||
+ | 0100 org 0100h | ||
+ | 0100 DB30 loop: in 030h | ||
+ | 0102 C30001 jmp loop | ||
+ | 0105 end | ||
+ | </source> | ||
==Assembled IDE/CF== | ==Assembled IDE/CF== |
Revision as of 22:08, 14 July 2015
S100 Computers / N8VEM S-100 IDE/CF version 3
"A Production Board Because this board and software may be of use to others and because I would like to have a "real" board rather than the above prototype in New Boards, together with Andrew Lynch at N8VEM (see here) we made a "proper" commercial type S-100 board. Through Andrew's magic hands (and hard work) a very nice S-100 board has emerged. Shown below. The board uses 24 bit address lines and 16 or 8 bit IO ports." Quote from S100Computers.com
Build Notes
myide.asm Z80. Not 8080/8085
; jha 6/27/2015 testport.asm
; test the S-100 IDE v.3 port addressing
;
0100 org 0100h
0100 DB30 loop: in 030h
0102 C30001 jmp loop
0105 end