1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-03-07 11:49:59 +00:00
Files
pkimpel.retro-b5500/webUI/B5500MagTapeLoadPanel.html

67 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>B5500 Emulator Magnetic Tape Loader</title>
<!--
/***********************************************************************
* retro-b5500/emulator B5500MagTapeLoadPanel.html
************************************************************************
* Copyright (c) 2014, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 Magnetic Tape Drive Loader page.
*
* Implements a dialog to load blank tapes or tape-image files for the
* magnetic tape drive device.
*
************************************************************************
* 2014-01-01 P.Kimpel
* Original version, from B5500MagTapeDrive.html.
***********************************************************************/
-->
<meta name="Author" content="Nigel Williams & Paul Kimpel">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B5500Common.css">
<link id=tapeLoadStyleSheet rel=stylesheet type="text/css" href="B5500MagTapeDrive.css">
</head>
<body class=deviceBody>
<div id=MTLoaderDiv class=devicePanel>
<div id=MTLoaderInnerDiv>
<input id=MTLoadFileSelector type=file size=60>
<div id=MTLoadFormatGroup>
Format
<select id=MTLoadFormatSelect>
<option value="blank" selected>(blank tape)
<option value="bcd">.bcd Image
<!--
<option value="tap">.tap Image
-->
<option value="aev">ASCII Even Parity
<option value="aod">ASCII Odd Parity
</select>
&nbsp;&nbsp;
<input id=MTLoadWriteRingCheck type=checkbox checked value="1">
<label for=MTLoadWriteRingCheck>Write Ring</label>
</div>
<div id=MTLoadTapeLengthGroup>
Tape Length
<select id=MTLoadTapeLengthSelect>
<option value="600">600 feet
<option value="1200">1200 feet
<option value="2400" selected>2400 feet
</select>
</div>
<button id=MTLoadCancelBtn class="redButton">Cancel</button>
<button id=MTLoadOKBtn class="greenButton">OK</button>
</div>
</div>
</body>
</html>