trunk/src/mess/machine/rmnimbus.c
| r31630 | r31631 | |
| 44 | 44 | The important thing when doing this is to make sure that if using the Native |
| 45 | 45 | SCSI tools, that the disk has the same number of blocks as specified above, |
| 46 | 46 | even if you have to use unusual geometry to do so ! |
| 47 | Currently, only the ST225N and ST125N can be formatted as the other native |
| 48 | drives and Xebec board expect the WRITE BUFFER (0x3B) and READ BUFFER (0x3C) |
| 49 | with mode 0 commands to be implemented and the Adaptec board uses unknown |
| 50 | command 0xE4. |
| 47 | 51 | |
| 52 | |
| 48 | 53 | for example: |
| 49 | 54 | |
| 50 | | chdman createhd -o ST125N.chd -chs 407,4,26 -ss 512 |
| 55 | chdman createhd -o ST125N.chd -chs 41921,1,1 -ss 512 |
| 56 | (the actual geometry can't be used because the block count won't match) |
| 51 | 57 | |
| 52 | 58 | */ |
| 53 | 59 | |
| r31630 | r31631 | |
| 1075 | 1081 | result |= m_scsi_cd << 6; |
| 1076 | 1082 | result |= m_scsi_io << 5; |
| 1077 | 1083 | result |= m_scsi_bsy << 4; |
| 1078 | | result |= m_scsi_msg << 3; |
| 1084 | result |= !m_scsi_msg << 3; |
| 1079 | 1085 | if(floppy) |
| 1080 | 1086 | { |
| 1081 | 1087 | result |= FDC_MOTOR() << 2; |