<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Direkt auf Diskette schreiben (Bootsektor, etc)]]></title><description><![CDATA[<p>Hi!</p>
<p>Ich komme einfach nicht weiter...<br />
Ich will direkt von einer Diskette lesen bzw. schreiben.<br />
Dazu möchte ich den entsprechenden Sektor von der Diskette in den Speicher schreiben, oder vom Speicher in einen Sektor der Diskette.</p>
<p>Leider weiß ich nicht, wie ich &quot;exklusiven&quot; Zugriff auf die Diskette bekomme:(</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/159561/direkt-auf-diskette-schreiben-bootsektor-etc</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Jul 2026 07:32:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/159561.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 16 Sep 2006 15:40:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Direkt auf Diskette schreiben (Bootsektor, etc) on Sat, 16 Sep 2006 15:40:47 GMT]]></title><description><![CDATA[<p>Hi!</p>
<p>Ich komme einfach nicht weiter...<br />
Ich will direkt von einer Diskette lesen bzw. schreiben.<br />
Dazu möchte ich den entsprechenden Sektor von der Diskette in den Speicher schreiben, oder vom Speicher in einen Sektor der Diskette.</p>
<p>Leider weiß ich nicht, wie ich &quot;exklusiven&quot; Zugriff auf die Diskette bekomme:(</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1138595</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1138595</guid><dc:creator><![CDATA[GCoder]]></dc:creator><pubDate>Sat, 16 Sep 2006 15:40:47 GMT</pubDate></item><item><title><![CDATA[Reply to Direkt auf Diskette schreiben (Bootsektor, etc) on Sat, 16 Sep 2006 16:25:05 GMT]]></title><description><![CDATA[<p>ok, danke. Ich hab die lösung:<br />
floppy = open(&quot;\\\.\\A:&quot; , O_RDWR);</p>
<p>Nur leider kann ich irgendwie nicht auf die Disk schreiben:</p>
<pre><code class="language-cpp">void FormatDisk()
{
void *pBOOT;
int BOOT = open(&quot;BOOTER&quot; ,O_RDONLY );
pBOOT=malloc(14077);
read(BOOT, pBOOT, 14077);

int r=write(floppy,pBOOT,14077); // = -1
printf(&quot;%i\r\n&quot;,r);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1138603</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1138603</guid><dc:creator><![CDATA[GCoder]]></dc:creator><pubDate>Sat, 16 Sep 2006 16:25:05 GMT</pubDate></item><item><title><![CDATA[Reply to Direkt auf Diskette schreiben (Bootsektor, etc) on Sat, 16 Sep 2006 16:57:09 GMT]]></title><description><![CDATA[<p>Guck mal hier:</p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.programmersheaven.com/download/16073/download.aspx" rel="nofollow">C Source to access the Floppy controller</a></p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.piclist.com/techref/os/win/api/win32/func/src/f09_10.htm" rel="nofollow">CreateFile</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1138641</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1138641</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Sat, 16 Sep 2006 16:57:09 GMT</pubDate></item><item><title><![CDATA[Reply to Direkt auf Diskette schreiben (Bootsektor, etc) on Sat, 16 Sep 2006 18:35:29 GMT]]></title><description><![CDATA[<p>Hi!</p>
<p>Danke! Der erste Link hats gebracht!<br />
Ich habe das inzwischen gelöst!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1138707</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1138707</guid><dc:creator><![CDATA[GCoder]]></dc:creator><pubDate>Sat, 16 Sep 2006 18:35:29 GMT</pubDate></item></channel></rss>