<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://oldwiki.cpcwiki.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Villain</id>
		<title>CPCWiki - THE Amstrad CPC encyclopedia! - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://oldwiki.cpcwiki.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Villain"/>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php/Special:Contributions/Villain"/>
		<updated>2026-08-28T06:24:33Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.1</generator>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Albireo&amp;diff=124013</id>
		<title>Albireo</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Albireo&amp;diff=124013"/>
				<updated>2025-03-30T17:01:40Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Whitelist */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General ==&lt;br /&gt;
&lt;br /&gt;
=== Intro ===&lt;br /&gt;
&lt;br /&gt;
Albireo is an expansion for the Amstrad CPC computers (all models). Its main goal is to provide reliable, fast, cheap and large storage, which it achieves by using a MicroSD card. But the board has a lot of features packed in:&lt;br /&gt;
* USB host port, allowing to connect USB mass storage, mouse, and other USB peripherals&lt;br /&gt;
* USB device port, allowing to link the CPC to a modern computer with maximal link speed (faster than the z80 can handle, and with on-board buffer and hardware flow control).&lt;br /&gt;
&lt;br /&gt;
The interface is based on the WCH CH376 chip and allows access to USB mass storage and other USB devices on CPC.&lt;br /&gt;
&lt;br /&gt;
The CH376 chip implements FAT32 in hardware, which means no filesystem driver is needed on the CPC side. It also implements the lower level aspects of USB, making it relatively easy to write drivers for other USB devices (mouse, joystick, ...).&lt;br /&gt;
&lt;br /&gt;
=== What's in it? ===&lt;br /&gt;
* SD and SDHC card mass storage support with fast (6 MHz) SPI link with the SD card. Hardware FAT32 support for easy file access. Raw sector access also possible for homegrown file-systems and other advanced applications.&lt;br /&gt;
* USB host support with built in mass storage driver, also with FAT32 and direct sector access.&lt;br /&gt;
* Generic USB host with direct control of USB endpoints, for connecting other kinds of USB devices.&lt;br /&gt;
* High-speed (1.5 Mbaud) serial link with built-in USB interface for linking with other computers for fast data exchange. Includes flow control, 16 byte FIFO on CPC side, and 512 byte FIFO on remote side, allowing fast buffered and interrupt-driven operation.&lt;br /&gt;
* Software configurable interrupt routing to either [[NMI]] or INT, or interrupt masking. Multiplexing of several interrupt sources: USB host controller, UART, remotely triggered, and CRTC CURSOR signal interrupts are gathered and easily accessible from a single interrupt status register.&lt;br /&gt;
&lt;br /&gt;
=== Board revisions ===&lt;br /&gt;
&lt;br /&gt;
The hardware went through multiple iterations before reaching final state. Each version identifies itself on the USB link and the version should be visible in Windows device manager or lsusb on Linux.&lt;br /&gt;
&lt;br /&gt;
==== Initial prototypes ====&lt;br /&gt;
&lt;br /&gt;
The first prototype was an hand-wired one. There were some changes to I/O ports used since then, so it is not usable anymore.&lt;br /&gt;
&lt;br /&gt;
==== Version 0.9 ====&lt;br /&gt;
&lt;br /&gt;
The first 5 boards were manufactured with an early PCB design, which required some wire-patches to get things working. With the wire-patches, this version behaves the same as 1.0.&lt;br /&gt;
&lt;br /&gt;
==== Version 1.0 ====&lt;br /&gt;
&lt;br /&gt;
About 20 boards were shipped with version 1.0. Unfortunately, as people started to write software using it it turned out that the serial port chip has compatibility problems with the z80 timings. As a result, this version of the board can use the serial port only with the FIFO disabled, which makes it impossible to reach high baudrates. The board is still perfectly usable if you are interested only in the microSD and USB host port.&lt;br /&gt;
&lt;br /&gt;
==== Version 1.1 ====&lt;br /&gt;
&lt;br /&gt;
This version of the board replaces the serial chip with a slightly different one. The board still reads &amp;quot;v1.0&amp;quot; as it is the same PCB, only the chip used has changed.&lt;br /&gt;
&lt;br /&gt;
You can identify your board from the info it sends on the USB device port, or by checking the serial chip (square chip on the back of the board).&lt;br /&gt;
Version 1.0 uses a TI TL16C550D chip. Version 1.1 uses a NXP SC16C650B chip.&lt;br /&gt;
&lt;br /&gt;
==== Version 2.0 ====&lt;br /&gt;
&lt;br /&gt;
Like the previous version, it provides one USB host port and one µSD slot with built-in support for mass storage and FAT filesystem. However, please note '''serial port has been removed'''. It is fully compatible (same port address). Of course, nothing is mapped on serial port addresses.&lt;br /&gt;
&lt;br /&gt;
[[File:Albireo 2.0 top.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Albireo 2.0 bottom.jpg]]&lt;br /&gt;
&lt;br /&gt;
=== How does it work? ===&lt;br /&gt;
* There are two main devices: the CH376 handles the USB host and SD card side of things, and is accessed at FE80 (data) and FE81 (command/status). The communication side is handled by a SC16C650B, mapped at FEB0-FEB7. This is similar to the chip used on most PC hardware and some Amiga expansions like the SilverSurfer.&lt;br /&gt;
* There is an FT230X chip to convert the UART to USB for connecting with a modern PC (standard serial ports are not that common anymore, and they wouldn't be fast enough anyway). The FT230X also generates 12MHz and 48MHz clocks for the two other chips.&lt;br /&gt;
* The 16C650 &amp;quot;modem control&amp;quot; lines are connected to various things (CH376 interrupt, FT230X general IO pin for remote control) and turns them into interrupts.&lt;br /&gt;
&lt;br /&gt;
=== What is it useful for? ===&lt;br /&gt;
* Use both USB mass storage devices and/or USB mice in [[SymbOS]] with one or two Albireos, which can be connected at the same time&lt;br /&gt;
* Access mass storage devices with [[UniDOS]]; use the USB key or SD card directly from BASIC and well-behaving apps (which support extra disk ROMs and a C drive); load games and tools from the mass storage media&lt;br /&gt;
&lt;br /&gt;
Planned:&lt;br /&gt;
* Connect to another computer like the CPC Booster, load snapshot, DSK or other files from it and write them to floppies or the mass storage media. A snapshot of 128K could be loaded in 0.86 seconds, a snapshot of 64K in less than 0.43 seconds.&lt;br /&gt;
* Use SLIP (serial line IP) and a properly setup gateway (Linux machine or similar) to connect the CPC to the Internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
=== I/O ports ===&lt;br /&gt;
&lt;br /&gt;
The decoding is clean, this means there aren't any mirror ports or undecoded address bits. Just the addresses listed below are used.&lt;br /&gt;
&lt;br /&gt;
The addresses are in the I/O range, which means you access them with the OUT and IN instructions. They are not memory mapped, and to match with the CPC address decoding, the address is decoded on 16 bytes. This makes using OTIR and similar looped instructions tricky, but is required for compatibility with the CPC.&lt;br /&gt;
&lt;br /&gt;
==== CH376 registers ====&lt;br /&gt;
&lt;br /&gt;
* FE80: &amp;quot;DATA&amp;quot; port (read/write)&lt;br /&gt;
* FE81: &amp;quot;COMMAND&amp;quot; (write) and &amp;quot;STATUS&amp;quot; (read) port&lt;br /&gt;
&lt;br /&gt;
==== SC16C650B registers ==== &lt;br /&gt;
&lt;br /&gt;
Some of the registers are sharing the same address. A register bit (DLAB) is used to switch between the two groups.&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
! Address !! DLAB !! Description&lt;br /&gt;
|-&lt;br /&gt;
| FEB0 || 0  || RBR/THR: RX buffer (read), TX buffer (write)&lt;br /&gt;
|-&lt;br /&gt;
| FEB1 || 0|| IER: Interrupt enable&lt;br /&gt;
|-&lt;br /&gt;
| FEB0 || 1|| DLL: Divisor latch LSB&lt;br /&gt;
|-&lt;br /&gt;
| FEB1 || 1|| DLM: Divisor latch MSB&lt;br /&gt;
|-&lt;br /&gt;
| FEB2 || || IIR/FCR: Interrupt status (read), FIFO control (write)&lt;br /&gt;
|-&lt;br /&gt;
| FEB3 || || LCR: Line control&lt;br /&gt;
|-&lt;br /&gt;
| FEB4 || || MCR: Modem control&lt;br /&gt;
|-&lt;br /&gt;
| FEB5 ||  || LSR: Line status&lt;br /&gt;
|-&lt;br /&gt;
| FEB6 || || MSR: Modem status&lt;br /&gt;
|-&lt;br /&gt;
| FEB7 || || SCR: Scratch register&lt;br /&gt;
|}&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== DIP switches ===&lt;br /&gt;
The board holds 4 DIP switches for configuration. From top to bottom:&lt;br /&gt;
&lt;br /&gt;
==== S1 - CH376 interrupt enable ====&lt;br /&gt;
&lt;br /&gt;
* When this switch is ON, the usb controller is allowed to generate interrupts to signal the CPC when it is done performing an operation.&lt;br /&gt;
* When this switch is OFF, the usb controller is not allowed to generate interrupts. The CPC must then poll the CH376 STATUS register to know wether the operation is finished.&lt;br /&gt;
&lt;br /&gt;
==== S2 - CH376 reset enable====&lt;br /&gt;
&lt;br /&gt;
* When this switch is ON, the CH376 will be reset at the same time as the CPC (hardware reset only).&lt;br /&gt;
* When this switch is OFF, the CH376 will not be reset, and the CPC must initialize it using the reset command (software reset). In this case, the CH376 internal buffer may be used to store reset resident data (but I don't know if this is of any practical use, yet).&lt;br /&gt;
&lt;br /&gt;
==== S3 - Remote reset enable ====&lt;br /&gt;
&lt;br /&gt;
* When this switch is ON, the DTR signal from the remote side of the serial link is connected to the CPC reset. This means that the remote side computer can trigger the CPC reset by toggling that line. &lt;br /&gt;
* When the switch is OFF, such reset is not allowed and the CPC is safe.&lt;br /&gt;
&lt;br /&gt;
==== S4 - Remote interrupt enable ====&lt;br /&gt;
&lt;br /&gt;
* When this switch is ON, the DTR signal from the remote side of the serial link is plugged to the DSR line of the UART controller. It then generates an interrupt which the CPC can process.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
=== Software supporting the Albireo ===&lt;br /&gt;
* [[UniDOS]] ([[AMSDOS]] compatible and modular DOS; see [https://unidos.cpcscene.net UniDOS official website]) &lt;br /&gt;
* [[SymbOS]] (both USB mass storage devices and USB mouse; supports two Albireos connected at the same time)&lt;br /&gt;
* [[Arkos_Tracker]] 2 (use the CPC AY chip through the USB serial port)&lt;br /&gt;
* [[FutureOS]] (USB mouse support)&lt;br /&gt;
* [[HDCPM]] (Support booting and running CP/M Plus from SD card)&lt;br /&gt;
* [[AlbiDOS]] **'''deprecated''', replaced by [[UniDOS]]** ([[AMSDOS]] compatible DOS driver; see [https://framagit.org/shinra/albireo/albireodos/-/wikis/home AlbiDOS documentation])&lt;br /&gt;
&lt;br /&gt;
=== Upcoming software ===&lt;br /&gt;
* Serial communication to communicate with a PC&lt;br /&gt;
&lt;br /&gt;
== List of compatible mouses ==&lt;br /&gt;
=== Whitelist ===&lt;br /&gt;
The following USB mice work seamlessly with the Albireo in [[SymbOS]].&lt;br /&gt;
* Genius DX-150X (GM-150028)&lt;br /&gt;
* Logitech M100 (still available; 03/2025)&lt;br /&gt;
* Logitech M105&lt;br /&gt;
* Microsoft 3902C693&lt;br /&gt;
&lt;br /&gt;
=== Blacklist ===&lt;br /&gt;
This list contains mice that only have a maximum of three buttons and a scroll wheel, but still don't work with the standard Albireo drivers. More complex gaming mice, etc., are not listed, as they would require a more complex driver anyway.&lt;br /&gt;
* Hewlett Packard HP 100&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://www.cpcwiki.eu/forum/amstrad-cpc-hardware/albireo-usbsdserial-interface-for-cpc/ Albireo] [https://www.cpcwiki.eu/forum/amstrad-cpc-hardware/albireo-usbsd-interface-for-cpc-new-version-without-serial/ Albireo 2.0] Topics on CPCWiki forum&lt;br /&gt;
*[https://pulkomandy.github.io/shinra.github.io/albireo.html Albireo - Programmer's manual]&lt;br /&gt;
*[[Media:Ch376ds1.pdf|CH376 datasheet]] USB flash drive or SD card controller&lt;br /&gt;
*[https://www.nxp.com/docs/en/data-sheet/SC16C650B.pdf SC16C650B datasheet] UART&lt;br /&gt;
&lt;br /&gt;
[[Category:DATA Storage]]&lt;br /&gt;
[[Category:Peripherals]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=FutureOS&amp;diff=106769</id>
		<title>FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=FutureOS&amp;diff=106769"/>
				<updated>2020-10-12T18:44:43Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Web links */ It's not an advertising platform. And no need for Donald Trump-style phrases...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Future OS-Logo.gif|thumb|FutureOS-Logo]] [[Image:Future-os.jpg|thumb|400px|FutureOS main screen]] &lt;br /&gt;
&lt;br /&gt;
== Introduction  ==&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' is an revolutionary operating system for the Amstrad [[CPC6128|CPC6128]], [[Plus|6128Plus]], [[C-ONE|C-One]] and [[CPC TREX|CPC TREX]]. The version for the CPCPlus supports some of its special features. The CPC464 and CPC664 can run FutureOS with a [http://www.cpcwiki.eu/forum/amstrad-cpc-hardware/open-source-diy-512kb-ram-expansion/msg163566/#msg163566 revaldinho's] 512 KB RAM expansion only.&lt;br /&gt;
FutureOS is being developed by [[TFM|TFM]] of [[FutureSoft|FutureSoft]] in [[Z80|Z80]] assembler. The development of FutureOS and its applications continues from 1989 up to now (2019). Latest OS release was August 7, 2019.&lt;br /&gt;
&lt;br /&gt;
On the Amstrad CPC many efforts to build a GUI were made. In other cases they were just extensions to realize some kind of a WIMP environment but weren't true operating systems with their own kernel, memory-management, BIOS, BDOS and so on. Therefore, the CPC's own OS (in combination with AmsDOS) and CP/M (Plus) were the only two known OSes for the series, but the question remained: since most CPCs have 128 KB (most C64 only have 64 KB), a screen-resolution of 640x200 (C64 only has 320x200) and some more advantages, why not have something similar? So the FutureOS-Project was born.&lt;br /&gt;
&lt;br /&gt;
FutureOS allows the user to control the computer with a broad variety of HIDs. The surface provides an icon section, a file section and a status section. The OS can deal with files up 16 MB (24 bit file-length) and it can load/save files up to 4 MB in one piece. It has a dynamic memory management system, which divides RAM usually into 16 KB blocks - or in smaller pieces. Further it supports a broad variety of hardware expansions. FutureOS is delivered together with a variety of utilities in the same four ROMs. Additional expansion ROMs can be added.&lt;br /&gt;
&lt;br /&gt;
FutureOS can be used with German, English, French and Spanish language interfaces.&lt;br /&gt;
&lt;br /&gt;
The OS itself has about 63.000 lines of code, the source code is about 630 KB in size.&lt;br /&gt;
&lt;br /&gt;
=== How to start FutureOS ===&lt;br /&gt;
The RSX command '''|OS''' will start FutureOS. You get directly into the Turbo Desk, there you can tag a drive and start an application f.e. (see Desktop).&lt;br /&gt;
&lt;br /&gt;
If you want to use FutureOS temporary then use the RSX command '''|FDESK''', this will save your first 48 KB RAM and you can leave FutureOS later and return to previous work.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
It runs on 'off the shelf' hardware when using the Cartridge for the 6128 Plus.&lt;br /&gt;
The core of the OS needs 64 KB ROM. On the CPC6128 it needs a ROM expansion or similar. Compatible products are EPROM-cards, the [[X-MEM]], [[MegaFlash]], [[Inicron ROM-RAM-Box|ROM-RAM-BOX]], [[SYMBiFACE II|SYMBiFACE II]], [[Ramcard 128|RAMcard]], Jareks [[CPC.Flash|Flash-ROM]], [[MegaROM]] or similar products. If you don't own such a card, you can take a look at '''FutureOS''' by using a compatible CPC Emulator ([[JavaCPC|JavaCPC]], [[WinCPC|WinCPC]], [[CaPriCe|Caprice]], [[WinApe|WinApe]], [[!CPCemu|CPCEmu]], [[Arnold]], [[Sugarbox]]) or others. &lt;br /&gt;
&lt;br /&gt;
The core of the OS itself is executed directly in (Pseudo-)ROM or [[Dobbertin EPROM 224|EPROM]] (in four 16 KB blocks). It jumps between the ROMs with the help of a little common area. Therefore the numbers of the four 16 KB ROMs are hardcoded and the jumps are very quick. Applications like ROManager can change all that numbers.&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' uses 2 KB (&amp;amp;amp;B800...&amp;amp;amp;BFFF) of the first 64 KB; the remaining RAM is available to applications. Additional RAM can be reserved for DIRectory buffering. Furthermore the OS uses memory management (up to 4 MB), file-handling and specialized Low/Mid/High-level routines to access the hardware. &lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' can be launched from AmsDOS with the RSX commands |OS or |FDESK. If you use |FDESK you can leave '''FutureOS''' and get back to BASIC where you have stopped before - the first 48 KB (not the screen) have been preserved. &lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' only runs well on a [[CPC6128|CPC6128]] or 6128 Plus (not CPC464 or 664, except you have a RAM expansion with full RAM mode &amp;amp;C3 support like the one from Revaldhino), because of their support for RAM configuration C3 (essential for the mouse pointer). FutureOS is not compatible with [[Firmware]] or [[CP/M|CP/M]] programs, but supports their data structure. It needs a [[Class]] 2  CPC,  it  runs  best  with  a [[Class]] 4 CPC or higher.&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' does not require the native CPC-OS (neither BASIC, DOS or firmware) , except its character set. If you replace the lower ROM by the [[CPC FutureOS lower ROM]] for example, then FutureOS will start directly. You can use your own set of characters.&lt;br /&gt;
&lt;br /&gt;
There is a Cartridge version of '''FutureOS''' which supports some Plus features.&lt;br /&gt;
&lt;br /&gt;
== Limitations ==&lt;br /&gt;
For CPCs with 128 KB there may be some limitations. The command |FDESK uses 48 KB E-RAM, a wallpaper uses 16 KB E-RAM. So in this case for example the E-RAM would be used up and this will inhibit some OS functionality (f.e. copy data). A RAM expansion is strongly suggested. &lt;br /&gt;
In case the OS requires more RAM you can always switch the wallpaper off to gain 16 KB and use the |OS command to start FutureOS.&lt;br /&gt;
&lt;br /&gt;
== Graphic User Interface  ==&lt;br /&gt;
&lt;br /&gt;
The Graphic User Interface (GUI) of FutureOS presents the user with three sections: &lt;br /&gt;
* the icon section (upper half of screen)&lt;br /&gt;
* the file window (lower half of screen) &lt;br /&gt;
* and the message base (the two bottom lines of the screen)&lt;br /&gt;
&lt;br /&gt;
The GUI appears directly after starting FutureOS, but can also be used by applications. The user can browse through directories of discs and hard-disc partitions. The text window provides space to display one directory page, this is 64 different file names (equals one full directory of a Data, System or IBM formatted disc). Using the keys SHIFT and CONTROL you can browse page by page through the directories of devices. &lt;br /&gt;
&lt;br /&gt;
A graphical mouse pointer is used to select devices, functions or files; this pointer can be controlled with nearly all of the pointer based HID devices (joystick, mouse, trackball, light-pen, Grafpad II, analogue joystick etc.) available for the CPC. &lt;br /&gt;
&lt;br /&gt;
In addition functions provided by the GUI can be activated using hotkeys. Type &amp;quot;d&amp;quot; for example to read and display the directory of a drive.&lt;br /&gt;
&lt;br /&gt;
Applications can call the GUI of the OS; and the user returns to the application using the OK icon. The icons are fixed, therefore the layout remains stable throughout its use and on every CPC using FutureOS. &lt;br /&gt;
&lt;br /&gt;
In SPARtan mode the GUI only displays icons which can be used directly. Unused icons will be hidden. In this mode the GUI is more easy to use and you see a bigger part of the wallpaper (if loaded).&lt;br /&gt;
&lt;br /&gt;
=== Desktop functions ===&lt;br /&gt;
&lt;br /&gt;
Watch pictures or movies. View text-files on-screen (scroll up and down) or print them on your printer. When viewing a picture you can adjust MODE and screen format using the cursor keys. When typing a text file it is possible to set the number of columns and lines of the window the text is displayed in.&lt;br /&gt;
&lt;br /&gt;
File headers can also be examined. FutureOS uses expanded but compatible file-headers, that allow a file to be up to 16 MB in length. The file-header can additionally specify the target RAM of a file. Further it can contain a file icon or a short file description.&lt;br /&gt;
&lt;br /&gt;
One or more files can be LOADed, SAVEd, RENamed, ERAsed, COPYd or PRINTed on printer.&lt;br /&gt;
&lt;br /&gt;
Previously used files can be retagged for a second usage, or all files can be untagged.&lt;br /&gt;
&lt;br /&gt;
The I(nformation) icon provides any kind of help (if a help system is installed).&lt;br /&gt;
&lt;br /&gt;
Further there is the [[FutureOS Monitor]], which provides access to RAM, ROM, Z80 registes, I/O ports and allows the testing of routines.&lt;br /&gt;
&lt;br /&gt;
=== Auto-DIR ===&lt;br /&gt;
If Auto-DIR is enabled, then it's enough to click at a drive Icon to read its DIRectory. You can select this feature using the 'Config OS' utility, either from disc or Tool-XROM.&lt;br /&gt;
&lt;br /&gt;
=== Hot keys ===&lt;br /&gt;
Hot keys can be used every time while working in the Desktop. To activate or deactivate a device (drive, hard disc partition f.e.) press Space first, then the corresponding letter from A to M.&lt;br /&gt;
&lt;br /&gt;
A (retag All previously used files), B (jump over next file name without tagging), C (Copy discs), D (display Directory), E (Erase files or format discs), F (Filecopy), G (Go to function below mouse arrow or tag a file name), H (show IDE Hard-disc), I (get Information), J (Jump to first file name), L (Load file), M (enter Machine Monitor), N (reName file or disc), P (Print DIR or file), Q (Quit OS session or start new), S (Save file), U (Untag all files), V (View pictures of text), W (set Alarm time - Wecker), X (eXecute application), Y (edit date), Z (edit time).&lt;br /&gt;
&lt;br /&gt;
=== SPARtan mode ===&lt;br /&gt;
[[Image:SPARtan 1.png|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
The '''SPARtan''' mode reduces the number of displayed icons to a icon set which can be immediately used. Using the Desktop will be easier and you see more of your wallpaper.&lt;br /&gt;
When the Spartan mode is off, all icons will be shown all the time.&lt;br /&gt;
The Spartan mode can be activated by setting a bit in the configuration bytes, either by hand of by using the ''''Konfig OS'''' / ''''Config OS'''' utility (see system application disc).&lt;br /&gt;
&lt;br /&gt;
=== Auto-DIR mode ===&lt;br /&gt;
If the Auto-DIR option is switched on (like in recent releases) it's enough to click on an drive / partition icon to read, sort and show its DIRectory. Furthermore in this mode some 'AI' is activated f.e. when click at the Copy icon and no files are tagged the Desktop will directly jump into Disc-copy mode.&lt;br /&gt;
If the Auto-DIR is off, then you need to do more things 'by hand', but you also have more control over the system.&lt;br /&gt;
The Auto-DIR mode can be activated by setting a bit in the configuration bytes, either by hand of by using the ''''Konfig OS'''' / ''''Config OS'''' utility (see system application disc).&lt;br /&gt;
&lt;br /&gt;
=== Wallpaper ===&lt;br /&gt;
Like for most OS the background of the Desktop can be adapted. This is actually quite easy for FutureOS. Just use the application &amp;quot;-LoadHGB.64K&amp;quot; (English) / &amp;quot;-LadeHGB.64K&amp;quot; (German). HGB stands for &amp;quot;HinterGrundBild&amp;quot; and is German for Wallpaper. There are discs full of wallpapers.&lt;br /&gt;
&lt;br /&gt;
If you want to create your own wallpapers then you'll need a MODE 2 screen with 512 x 256 pixel.&lt;br /&gt;
&lt;br /&gt;
You also can load a wallpaper by hand: Place such a 16 KB (headerless) screen in one of the E-RAMs and set the right system variable of the OS (see file #D.). Here are some Wallpapers:&lt;br /&gt;
&lt;br /&gt;
http://futureos.cpc-live.com/files/Wallpaper_HGBs_Deu-Eng.zip&lt;br /&gt;
&lt;br /&gt;
Or take a direct look at some [[Wallpaper|Wallpapers]]&lt;br /&gt;
&lt;br /&gt;
== FutureOS hardware monitor ==&lt;br /&gt;
The [[FutureOS Monitor]] is a small built in machine monitor of the [[FutureOS]] operating system. It contains basic functions to access (expansion) memory and the Porting system to comfortably access all the CPCs I/O ports. When using FutureOS for the CPC Plus you can also access all memory mapped I/O (hardware sprites, DMA-sound, soft scrolling etc.).&lt;br /&gt;
&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Dump RAM, ROM, expansion RAM or memory mapped I/O (CPC Plus)&lt;br /&gt;
* Edit RAM, expansion RAM or memory mapped I/O (CPC Plus)&lt;br /&gt;
* Access all I/O ports of the CPC and external hardware&lt;br /&gt;
* Edit Z80 registers (previously to calling an machine program). This includes the first and second register set, both index registers, the stack pointer, R and I&lt;br /&gt;
* Configure RAM, ROM, I/O for other functions&lt;br /&gt;
* Move block of memory, ROM, RAM, expansion RAM&lt;br /&gt;
* Initialize block of memory with an 8 or 16 bit value, RAM, expansion RAM&lt;br /&gt;
* Call a machine program or OS function&lt;br /&gt;
* Exit, brings you back to the Desktop&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;caption=&amp;quot;Some preview images of the game&amp;quot;&amp;gt;&lt;br /&gt;
Image:OS-Mon_1.png&lt;br /&gt;
Image:OS-Mon_2.png&lt;br /&gt;
Image:OS-Mon_3.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CBM ==&lt;br /&gt;
[[Image:CBM.png|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;'''C'''ommand '''B'''ar '''M'''enu&amp;quot; ([[CBM|CBM]]) is a partially resident part of FutureOS, which can be easily linked into applications. &lt;br /&gt;
* It's object oriented ('''OO''') user interface consists of several flexible windows, pull down menus and file selectors.&lt;br /&gt;
* In addition hot keys can be used. &lt;br /&gt;
* Using [[CBM|CBM]] as the standard (G/T)UI for FutureOS programs helps making them looking similar and usable in an intuitive way. &lt;br /&gt;
* A part of the CBM is located in the FutureOS ROMs, the flexible part can be individually adapted to its target applications and will be integrated in the application itself.&lt;br /&gt;
&lt;br /&gt;
== File system  ==&lt;br /&gt;
[[Image:HERO-HED.JPG|thumb|192px|Example of FutureOS file header]]&lt;br /&gt;
&lt;br /&gt;
The file system of FutureOS can handle multiple simultaneous floppy disc drives and hard disc partitions. After the selection of the devices FutureOS reads and buffers the directory entries of the devices. This speeds up the the data transfer significantly. Integrated utilities like the multi file copy can copy files from physical sources to different physical destinations in one run. &lt;br /&gt;
&lt;br /&gt;
The file system is compatible with the CPCs native data-, file- and format structures (f. e. File header, Disc formats), but expanded in many ways. FutureOS supports the Data, IBM, System, Vendor and Vortex (704 KB) disc formats. &lt;br /&gt;
&lt;br /&gt;
Filenames can use all 256 different characters and user areas from 0 to 254 (except for &amp;amp;amp;E5, which is reserved for deleted files). Unlike Amsdos, a file that is erased under FutureOS is not shifted to user &amp;amp;E5, but is physically removed from the directory. During this process the directory get sorted. File headers can be displayed as small text files or as graphic icons (f. e. a FutureOS application). An AmsDOS file header has 128 bytes of which most are unused. FutureOS makes use of those unused bytes so that files have a length definition of 24 bit (16 MB file length) and can have a physical RAM select. Therefore a file can be defined to be loaded everywhere in the external RAM. Also a [[FutureOS Header|FutureOS file-header]] can contain a graphical icon, a textual icon or a short description of the file. &lt;br /&gt;
&lt;br /&gt;
FutureOS includes the fastest FDC-based disc- and file-reading and writing routines for the CPC. This is possible by ignoring the interleave factor, reading one physical sector directly after each other to the correct position in memory but also by just starting with the first appearing sector of every new track. In addition the DIRectory is buffered in RAM, the head of the floppy must not step back to look for the next block. The track step rate is increased and can be adjusted for every drive. It's even faster than optimized copy programs like Crowns' [[Crime|Crime]].&lt;br /&gt;
&lt;br /&gt;
== Implementation of Hardware  ==&lt;br /&gt;
&lt;br /&gt;
The OS supports many of the hardware available for the CPC. One of the ambitions of FutureOS is to support all hardware available. Hardware expansions usually need drivers that can be flexibly added to an OS. Contrary to this approach, a goal of FutureOS is to provide a monolithic architecture where all drivers are implemented in a hardcoded way. &lt;br /&gt;
&lt;br /&gt;
*''Disc drives and hard discs:'' FutureOS supports up to eight floppy disc drives and up to four hard disc partitions (Dobbertin HD20 hard disc). It buffers the directories read from any mass storage device in the expansion RAM to speed up drive access.&lt;br /&gt;
&lt;br /&gt;
*''Plug and Play:'' If a hardware expansion is connected to the CPC FutureOS will automatically detect that expansion, initialise it and make it available to user and applications. The architecture of the OS allows you to add and remove hardware on purpose (hot plug and play). You can switch external hardware on or off in the configuration bytes (use ConfigOS utility).&lt;br /&gt;
&lt;br /&gt;
== Memory  Management ==&lt;br /&gt;
=== RAM ===&lt;br /&gt;
* Unlike other CPC-OS the FutureOS uses only small amounts of the memory of the CPC since it is located and executed in ROM.&lt;br /&gt;
* When using the Desktop the OS uses the RAM between &amp;amp;A000 and &amp;amp;BFFF (8 KB).&lt;br /&gt;
* In case an application is running: The RAM that is used by the OS can be reduced to the region between &amp;amp;B800 and &amp;amp;BFFF, in this case only 2 KB are occupied by system variables of the OS.&lt;br /&gt;
* Depending on the amount of active drives and HD partitions additional expansion RAM blocks will be occupied for directory buffering, but there is no reduction in free main memory (first 64 KB). After loading data this buffers can be freed again of course.&lt;br /&gt;
* FutureOS provides an expansion RAM manager containing all needed OS functions to check for, order, allocate, free and manage expansion RAM up to 4 MB.&lt;br /&gt;
* Also files of that length (4 MB) can be loaded and saved at once. This depends on the amount of connected E-RAM of course.&lt;br /&gt;
&lt;br /&gt;
=== ROM ===&lt;br /&gt;
* The core OS uses 64 KB ROM&lt;br /&gt;
* By using fixed ROM numbers quick jumps can be made from one ROM to another ROM without the need of using RAM. This is also true for additional ROMs which want to use the API in the care ROMs A-D.&lt;br /&gt;
* FutureOS provides an expansion ROM (XROM) architecture which allows to add programs as expansion ROMs. For the native OS these ROMs are declared as &amp;quot;extension&amp;quot; and will NOT be initialized.&lt;br /&gt;
&lt;br /&gt;
==== XROMs ====&lt;br /&gt;
* Currently there are a few XROMs for FutureOS:&lt;br /&gt;
** ROManager 2.19&lt;br /&gt;
** System-Tools (English or German)&lt;br /&gt;
** Wallpapers I, II and III&lt;br /&gt;
* The XROMs can be automatically started, f.e. you can have your favorite wallpaper when starting FutureOS. The tools to setup autostart are on the XROM disc.&lt;br /&gt;
&lt;br /&gt;
== OS supported Hardware  ==&lt;br /&gt;
&lt;br /&gt;
==== Printer ports ====&lt;br /&gt;
*7 bit [[Printer Port|printer port]] (native)&lt;br /&gt;
*[[8bit Printer Ports|8 bit printer port]] 6128 Plus using Amstrads CRTC solution&lt;br /&gt;
*[[Happy Computer 8bit Printer Mod|Happy Computer Mod]] using CAS_WRITE as Bit 7.&lt;br /&gt;
&lt;br /&gt;
==== Drives ====&lt;br /&gt;
*3&amp;quot; A, B, C and D drives (C, D need hardware patch) &lt;br /&gt;
*3.5&amp;quot; and 5.25&amp;quot; drive &lt;br /&gt;
*Atari ST 80 Track double-sided B-drive &lt;br /&gt;
*[[Dobbertin|Dobbertin]] D-DOS Double drive. Up to four drives 80 track, double-sided. &lt;br /&gt;
*[[Dobbertin|Dobbertin]] [[XD-DOS]] X-drive 80 tracks, DS&lt;br /&gt;
*[[F1|Vortex disc drives FI-D, F1-S, M1-D, M1-S]]. Own FDC, up to four drives 80 track, double-sided.&lt;br /&gt;
*[[F1|Vortex disc drives F1-X, M1-X]]. Up to 80 track, double-sided.&lt;br /&gt;
and ...&lt;br /&gt;
*[[HxC Floppy Emulator]] (On message &amp;quot;Disc is write protected&amp;quot; put a HFE in HxC or adjust its configuration)&lt;br /&gt;
&lt;br /&gt;
==== Expansion cards ====&lt;br /&gt;
*[[Albireo]] (partial)&lt;br /&gt;
*[[AMRAM2]] (combined EPROM and S-RAM card)&lt;br /&gt;
*[[C4CPC]] 6128 Plus version&lt;br /&gt;
*[[CPC Booster]](+) and MiniBooster&lt;br /&gt;
*[[M4 Board]] (RTC, ROM management)&lt;br /&gt;
*[[SYMBiFACE II|SYMBiFACE II]] (partial)&lt;br /&gt;
*[[SYMBiFACE III|SYMBiFACE III]] (partial)&lt;br /&gt;
*HD64180 Coprocessor card&lt;br /&gt;
*[[EPROM]] cards or EPROM simulator cards like the [[Britannia ROM Board]], [[Dobbertin]] EPROM card, [[Honeysoft ROM Board]], [[Inicron ROM-RAM-Box]], [[KDS Sideways ROM Board]], [[MegaFlash]], [[MegaROM]], [[SuperPower ROM Box]], [[SYMBiFACE II]], SuperROM Plus and others&lt;br /&gt;
&lt;br /&gt;
==== Hard-disc ====&lt;br /&gt;
*[[CPC-IDE]], [[SYMBiFACE II]] and [[X-MASS]] IDE support, but only low-level, FutureOS IDE-ROM needed&lt;br /&gt;
*[[Dobbertin Harddisc|Dobbertin HD20]] (72 KB/s data transfer rate) &lt;br /&gt;
*[[IDE8255]] IDE support, but only low-level, FutureOS IDE-ROM needed&lt;br /&gt;
&lt;br /&gt;
==== Joysticks ====&lt;br /&gt;
*[[Analog Joysticks|Analog Joystick]] (6128 Plus) &lt;br /&gt;
*[[Digital Joysticks]] 1 and 2&lt;br /&gt;
&lt;br /&gt;
==== Memory expansions ====&lt;br /&gt;
* 4 MB expansion from Zaxon&lt;br /&gt;
*[[c't 512 KB internal RAM expansion]] (DIY) (c't magazine)&lt;br /&gt;
*[[Campursoft ROM Board]] (DIY)&lt;br /&gt;
*[[CPC4MB|Jareks 4 MB RAM expansion]] provides 4 MB RAM&lt;br /&gt;
*[[Dk'tronics memory expansion|Dk'tronics]] 64-512 KB and compatibles &lt;br /&gt;
*[[Dobbertin Memory Expansion|Dobbertin]]&lt;br /&gt;
*[[FlashGordon]]&lt;br /&gt;
*[[Inicron RAM-Box|Inicron]]&lt;br /&gt;
*[[Inicron ROM-RAM-Box]]&lt;br /&gt;
*[[M4 Board]]&lt;br /&gt;
*[[MegaFlash]]&lt;br /&gt;
*[[RAM7 2MB memory expansion|RAM7's RAM expansion]]&amp;amp;nbsp;(up to 2 MB) &lt;br /&gt;
*[[RAM BOX]]&lt;br /&gt;
*[[SYMBiFACE II|SYMBiFACE II]]&lt;br /&gt;
*[[X-MEM]]&lt;br /&gt;
*[[Y-MEM]]&lt;br /&gt;
*[[Z-MEM]]&lt;br /&gt;
&lt;br /&gt;
CPC464 and CPC664 users can run FutureOS when using this RAM expansion:&lt;br /&gt;
http://www.cpcwiki.eu/forum/amstrad-cpc-hardware/open-source-diy-512kb-ram-expansion/msg163566/#msg163566&lt;br /&gt;
&lt;br /&gt;
==== Real-Time-Clocks ====&lt;br /&gt;
*[[Dobbertin Smart Watch]] and the version from dxs&lt;br /&gt;
*[[LambdaSpeak III]]&lt;br /&gt;
*[[M4 Board]]&lt;br /&gt;
*[[SYMBiFACE II:Realtime clock|SYMBiFACE II]]&lt;br /&gt;
*[[SYMBiFACE III]]&lt;br /&gt;
*[[Dk'tronics Real Time Clock]]&lt;br /&gt;
&lt;br /&gt;
==== Sound and Music ====&lt;br /&gt;
*[[Amstrad SSA-1 Speech Synthesizer]]&lt;br /&gt;
*[[CTC-AY SDK main fr|CTC-AY]] aka [[PlayCity]]&lt;br /&gt;
*[[Digiblaster]]&lt;br /&gt;
*[[Dk'tronics Speech Synthesizer]]&lt;br /&gt;
*[[FuturePlayer]] for MP3 samples up to 128 kbps (max. 4 MB in size)&lt;br /&gt;
*[[LambdaSpeak]] (also the MP3 module is fully supported)&lt;br /&gt;
*[[Soundplayer]]&lt;br /&gt;
&lt;br /&gt;
==== Networking ====&lt;br /&gt;
*[[Amstrad Serial Interface]]&lt;br /&gt;
*[[CPC Booster]]+ and TotO's MiniBooster&lt;br /&gt;
*[[Schneider RS232 Interface]]&lt;br /&gt;
*[[USIfAC]]&lt;br /&gt;
*[[Virtual Net 96]]&lt;br /&gt;
There is limited support at the moment&lt;br /&gt;
&lt;br /&gt;
=== Additional HIDs (Hot Plug &amp;amp; Play compatible) ===&lt;br /&gt;
&lt;br /&gt;
The following pointer-based input devices are supported by FutureOS. Applications can use them by calling the appropriate OS function in OS-ROMs A, C or D. &lt;br /&gt;
&lt;br /&gt;
==== Mice ====&lt;br /&gt;
*[[Atari-ST mouse adapter|Atari ST mouse adapter]] ([[CPC Magazin|Schneider Magazin]])&lt;br /&gt;
*[[AMX Mouse|AMX Mouse]], [[PS2Mouse|AMX PS/2 Mouse Adapter]]&lt;br /&gt;
*[[CPC-Mousepack 2.0|CPC-Mousepack]] (Reisware)&lt;br /&gt;
*[[GEOS mouse|GEOS mouse]] ([[Commodore 64]] device)&lt;br /&gt;
*[[SYMBiFACE II:PS/2 mouse|PS/2 mouse]] of [[SYMBiFACE II]]&lt;br /&gt;
*[[USB mouse]] of [[SYMBiFACE III]]&lt;br /&gt;
*[[Dk'tronics Mouse Interface]]&lt;br /&gt;
&lt;br /&gt;
==== Lightpens ====&lt;br /&gt;
*[[Dk'tronics Lightpen|Dk'tronics lightpen]]&lt;br /&gt;
*[[Happy Computer Light Pen]] (DIY from German magazine)&lt;br /&gt;
*[[Lindy Light Pen]]&lt;br /&gt;
&lt;br /&gt;
==== Graphic Tablets ====&lt;br /&gt;
*[[Grafpad II|Hegotron Grafpad II]]&lt;br /&gt;
&lt;br /&gt;
==== Trackballs ====&lt;br /&gt;
*[[Atari-ST mouse adapter|Atari ST trackball adapter]] (Schneider Magazin)&lt;br /&gt;
*[[Marconi|Marconi trackball]]&lt;br /&gt;
&lt;br /&gt;
== ROM-included Utilities  ==&lt;br /&gt;
&lt;br /&gt;
The FutureOS ROMs already include several utilities as an addition to the operating system. Tools like copy (files or discs), format discs (data-, system-, ibm- and Vortex-format), erase files, rename files, type and print files, set alarm time, set time of RTC, verify discs or directory refreshing, display file-header etc. are available without the need to load them from an external medium. &lt;br /&gt;
&lt;br /&gt;
Multiple files can be copied between different physical media and user numbers / directories in one go. &lt;br /&gt;
&lt;br /&gt;
A small machine monitor is also provided. The [[FutureOS Monitor]] provides features like CPU register editing (all!), access to the I/O ports, memory dump and editing, and display and manipulation of the ASIC contents (6128 Plus). Memory blocks can be copied or initialized. It is possible to call (and return from) a routine with defined CPU registers (complete register set) and memory.&lt;br /&gt;
&lt;br /&gt;
== OS functions ==&lt;br /&gt;
&lt;br /&gt;
Only some examples are mentioned.&lt;br /&gt;
* The String Editor: It allows to enter strings up to 64 KB, different character sets can be used, a range of legal letters can be defined, four keyboard levels (normal, shift, control and shift+control) can be used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developing for FutureOS ==&lt;br /&gt;
&lt;br /&gt;
You can develop very freely: the RSTs are free for use, you can choose the interrupt mode and access all the hardware. Also the second register set of the Z80 can be completely used by applications - in contrast to all other OS for the CPC.&lt;br /&gt;
&lt;br /&gt;
*''Z80 Assembler:'' You can use an assembler for AmsDOS or for CP/M. Switching between AmsDOS and FutureOS is fast and using |FDESK allows to come back to AmsDOS with the first 48 KB or RAM remaining untouched. There is a Z80 library for FutureOS the programmer can use for own applications.&lt;br /&gt;
&lt;br /&gt;
*''The Command Bar Menu:'' In addition [[CBM]] can make application development easy and quick. All needed sources are provided and explained. A variety of sample programs exist to show how to use CBM.&lt;br /&gt;
&lt;br /&gt;
*''Programming in C for FutureOS:'' With [[FIOLIB|FIOLIB]] - the IO-Lib for FutureOS it's also possible to use C as a programming language. Beside the usual I/O the FIOLIB provides a lot of valuable functions for management of text, keyboard, files, relative files, screen, colors, graphic and more.&lt;br /&gt;
&lt;br /&gt;
== Applications / Demos / Games  ==&lt;br /&gt;
&lt;br /&gt;
The following programs can be downloaded at the FutureOS homepage, see Weblinks below. &lt;br /&gt;
&lt;br /&gt;
=== Games ===&lt;br /&gt;
*[[Burnin Wheels]] (Soft scrolling car racing game) &lt;br /&gt;
*[[Cyber Huhn|Cyber Chicken]] (3D space game)&lt;br /&gt;
*[[Gerelakos|Gerelakos]] ([[RPG]] under construction) &lt;br /&gt;
*[[H.E.R.O.]] by [[Flynn]]&lt;br /&gt;
*[[Return of the Sisters|Return of the Sisters]] (a Giana Sisters Clone) WIP name &amp;quot;A tribute to the Sisters...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Demos ===&lt;br /&gt;
*[[Captain Future]] (4 MB movie that uses Jareks 4 MB expansion)&lt;br /&gt;
*[[Darth Vader]] (stand alone demo)&lt;br /&gt;
*[[FutureView|FutureView]] (disc mag) &lt;br /&gt;
*[[Gravitation Zero]]&lt;br /&gt;
*[[Meg Ryan sample]] demo&lt;br /&gt;
*[[NGC4650A]]&lt;br /&gt;
*[[Odiesofts Snow]]&lt;br /&gt;
*[[Rotating Fractal]] (stand alone demo)&lt;br /&gt;
*[[Star Trek sample demo]]&lt;br /&gt;
&lt;br /&gt;
=== Applications ===&lt;br /&gt;
*[[CBM|CBM]] (non resident OS expansion) &lt;br /&gt;
*[[-CntrlPanel]] (control panel) &lt;br /&gt;
*[[FilmeMacher|FilmeMacher]] (movie player) &lt;br /&gt;
*[[FIOLIB|FIOLIB]] (C library) &lt;br /&gt;
*[[Flash ROManager|Flash ROManager]] (management of Jareks Flash ROM expansion) &lt;br /&gt;
*[[FuturePlayer|FuturePlayer]] (MP3 and WAV player) - Ask TFM for MP3 files on discs&lt;br /&gt;
*[[FutureTex|FutureTex]] (text editor)&lt;br /&gt;
*[[GMSK|GMSK]] (sprite converter) &lt;br /&gt;
*[[GSED]] (Graphic Playground Editor for 2D / 3D games) &lt;br /&gt;
*Kane (sprite grabber)&lt;br /&gt;
*[[MegaFlashROManager]] (management of the MegaFlash Pseudo-ROMs for FutureOS and BASIC)&lt;br /&gt;
*[[MMcR Format]] (Ultrafast formatting tool for batches of discs)&lt;br /&gt;
*[[ROManager|ROManager]] (management of a variety of Flash- and Pseudo-ROM cards)&lt;br /&gt;
&lt;br /&gt;
== Conclusion  ==&lt;br /&gt;
&lt;br /&gt;
FutureOS is designed as an OS with fast system calls and support for nearly all CPC expansions. It has specialised file handling and memory management capabilities that support programs up to 4 MB and files up to 16 MB. The idea is that development of professional software, games, graphic tools, word processors, sound, management of big amounts of data, and programming languages are possible in this environment. At this point, the user can do all this, like listen to MP3 files, work with graphic, use and create C programs, watch movies, demos and play games (see weblinks).&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
*[http://www.FutureOS.de FutureOS.de]&lt;br /&gt;
*[http://groups.yahoo.com/group/FutureOS/ FutureOS Downloads &amp;amp; Mailing list]&lt;br /&gt;
*[http://cpc-live.com/javacpc.php?system=FutureOS&amp;amp;title=FutureOS&amp;amp;full=true&amp;amp;boot=|os&amp;amp;disc=FutureOS_Darth.dsk&amp;amp;discb=FutureOS_Fraktal.dsk&amp;amp;discc=FutureOS_FV-I.dsk&amp;amp;discd=FutureOS_FV-II.dsk&amp;amp;disce=FutureOS_FV-III.dsk&amp;amp;discf=FutureOS_FV-IVeng.dsk&amp;amp;discg=FutureOS_NGC4650A.dsk Try and use FutureOS online at JavaCPC]&lt;br /&gt;
*[http://koaks.amstrad.free.fr/amstrad/documents/article_futureos.html FutureOS, le supersonique du CPC]&lt;br /&gt;
*[http://www.phenixinformatique.com/modules/smartsection/item.php?itemid=15 Interview de TFM]&lt;br /&gt;
&lt;br /&gt;
=== Discussion Forum ===&lt;br /&gt;
*[http://www.cpcwiki.eu/forum/programming/futureos-corner/ Discussions in English]&lt;br /&gt;
*[http://cpc-live.com/forum/index.php/board,5.0.html Diskussionen auf Deutsch]&lt;br /&gt;
&lt;br /&gt;
=== Youtube Videos ===&lt;br /&gt;
There is a special youtube channel for FutureOS, it provides different playlists for different topics related to this OS. &lt;br /&gt;
Please have a look here:&lt;br /&gt;
*[https://www.youtube.com/user/realTFM/playlists FutureOS Playlists]&lt;br /&gt;
&lt;br /&gt;
[[Category:4 MB RAM Software]] &lt;br /&gt;
[[Category:Cartridges]] &lt;br /&gt;
[[Category:CPC GUI]] &lt;br /&gt;
[[Category:CPC_Plus]] &lt;br /&gt;
[[Category:Digiblaster]]&lt;br /&gt;
[[Category:Expansion ROM]] &lt;br /&gt;
[[Category:Extended RAM Software]] &lt;br /&gt;
[[Category:FutureOS]] &lt;br /&gt;
[[Category:Operating_System]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=FutureOS&amp;diff=106579</id>
		<title>FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=FutureOS&amp;diff=106579"/>
				<updated>2020-09-23T20:07:27Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Youtube Videos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Future OS-Logo.gif|thumb|FutureOS-Logo]] [[Image:Future-os.jpg|thumb|400px|FutureOS main screen]] &lt;br /&gt;
&lt;br /&gt;
== Introduction  ==&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' is an revolutionary operating system for the Amstrad [[CPC6128|CPC6128]], [[Plus|6128Plus]], [[C-ONE|C-One]] and [[CPC TREX|CPC TREX]]. The version for the CPCPlus supports some of its special features. The CPC464 and CPC664 can run FutureOS with a [http://www.cpcwiki.eu/forum/amstrad-cpc-hardware/open-source-diy-512kb-ram-expansion/msg163566/#msg163566 revaldinho's] 512 KB RAM expansion only.&lt;br /&gt;
FutureOS is being developed by [[TFM|TFM]] of [[FutureSoft|FutureSoft]] in [[Z80|Z80]] assembler. The development of FutureOS and its applications continues from 1989 up to now (2019). Latest OS release was August 7, 2019.&lt;br /&gt;
&lt;br /&gt;
On the Amstrad CPC many efforts to build a GUI were made. In other cases they were just extensions to realize some kind of a WIMP environment but weren't true operating systems with their own kernel, memory-management, BIOS, BDOS and so on. Therefore, the CPC's own OS (in combination with AmsDOS) and CP/M (Plus) were the only two known OSes for the series, but the question remained: since most CPCs have 128 KB (most C64 only have 64 KB), a screen-resolution of 640x200 (C64 only has 320x200) and some more advantages, why not have something similar? So the FutureOS-Project was born.&lt;br /&gt;
&lt;br /&gt;
FutureOS allows the user to control the computer with a broad variety of HIDs. The surface provides an icon section, a file section and a status section. The OS can deal with files up 16 MB (24 bit file-length) and it can load/save files up to 4 MB in one piece. It has a dynamic memory management system, which divides RAM usually into 16 KB blocks - or in smaller pieces. Further it supports a broad variety of hardware expansions. FutureOS is delivered together with a variety of utilities in the same four ROMs. Additional expansion ROMs can be added.&lt;br /&gt;
&lt;br /&gt;
FutureOS can be used with German, English, French and Spanish language interfaces.&lt;br /&gt;
&lt;br /&gt;
The OS itself has about 63.000 lines of code, the source code is about 630 KB in size.&lt;br /&gt;
&lt;br /&gt;
=== How to start FutureOS ===&lt;br /&gt;
The RSX command '''|OS''' will start FutureOS. You get directly into the Turbo Desk, there you can tag a drive and start an application f.e. (see Desktop).&lt;br /&gt;
&lt;br /&gt;
If you want to use FutureOS temporary then use the RSX command '''|FDESK''', this will save your first 48 KB RAM and you can leave FutureOS later and return to previous work.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
It runs on 'off the shelf' hardware when using the Cartridge for the 6128 Plus.&lt;br /&gt;
The core of the OS needs 64 KB ROM. On the CPC6128 it needs a ROM expansion or similar. Compatible products are EPROM-cards, the [[X-MEM]], [[MegaFlash]], [[Inicron ROM-RAM-Box|ROM-RAM-BOX]], [[SYMBiFACE II|SYMBiFACE II]], [[Ramcard 128|RAMcard]], Jareks [[CPC.Flash|Flash-ROM]], [[MegaROM]] or similar products. If you don't own such a card, you can take a look at '''FutureOS''' by using a compatible CPC Emulator ([[JavaCPC|JavaCPC]], [[WinCPC|WinCPC]], [[CaPriCe|Caprice]], [[WinApe|WinApe]], [[!CPCemu|CPCEmu]], [[Arnold]], [[Sugarbox]]) or others. &lt;br /&gt;
&lt;br /&gt;
The core of the OS itself is executed directly in (Pseudo-)ROM or [[Dobbertin EPROM 224|EPROM]] (in four 16 KB blocks). It jumps between the ROMs with the help of a little common area. Therefore the numbers of the four 16 KB ROMs are hardcoded and the jumps are very quick. Applications like ROManager can change all that numbers.&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' uses 2 KB (&amp;amp;amp;B800...&amp;amp;amp;BFFF) of the first 64 KB; the remaining RAM is available to applications. Additional RAM can be reserved for DIRectory buffering. Furthermore the OS uses memory management (up to 4 MB), file-handling and specialized Low/Mid/High-level routines to access the hardware. &lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' can be launched from AmsDOS with the RSX commands |OS or |FDESK. If you use |FDESK you can leave '''FutureOS''' and get back to BASIC where you have stopped before - the first 48 KB (not the screen) have been preserved. &lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' only runs well on a [[CPC6128|CPC6128]] or 6128 Plus (not CPC464 or 664, except you have a RAM expansion with full RAM mode &amp;amp;C3 support like the one from Revaldhino), because of their support for RAM configuration C3 (essential for the mouse pointer). FutureOS is not compatible with [[Firmware]] or [[CP/M|CP/M]] programs, but supports their data structure. It needs a [[Class]] 2  CPC,  it  runs  best  with  a [[Class]] 4 CPC or higher.&lt;br /&gt;
&lt;br /&gt;
'''FutureOS''' does not require the native CPC-OS (neither BASIC, DOS or firmware) , except its character set. If you replace the lower ROM by the [[CPC FutureOS lower ROM]] for example, then FutureOS will start directly. You can use your own set of characters.&lt;br /&gt;
&lt;br /&gt;
There is a Cartridge version of '''FutureOS''' which supports some Plus features.&lt;br /&gt;
&lt;br /&gt;
== Limitations ==&lt;br /&gt;
For CPCs with 128 KB there may be some limitations. The command |FDESK uses 48 KB E-RAM, a wallpaper uses 16 KB E-RAM. So in this case for example the E-RAM would be used up and this will inhibit some OS functionality (f.e. copy data). A RAM expansion is strongly suggested. &lt;br /&gt;
In case the OS requires more RAM you can always switch the wallpaper off to gain 16 KB and use the |OS command to start FutureOS.&lt;br /&gt;
&lt;br /&gt;
== Graphic User Interface  ==&lt;br /&gt;
&lt;br /&gt;
The Graphic User Interface (GUI) of FutureOS presents the user with three sections: &lt;br /&gt;
* the icon section (upper half of screen)&lt;br /&gt;
* the file window (lower half of screen) &lt;br /&gt;
* and the message base (the two bottom lines of the screen)&lt;br /&gt;
&lt;br /&gt;
The GUI appears directly after starting FutureOS, but can also be used by applications. The user can browse through directories of discs and hard-disc partitions. The text window provides space to display one directory page, this is 64 different file names (equals one full directory of a Data, System or IBM formatted disc). Using the keys SHIFT and CONTROL you can browse page by page through the directories of devices. &lt;br /&gt;
&lt;br /&gt;
A graphical mouse pointer is used to select devices, functions or files; this pointer can be controlled with nearly all of the pointer based HID devices (joystick, mouse, trackball, light-pen, Grafpad II, analogue joystick etc.) available for the CPC. &lt;br /&gt;
&lt;br /&gt;
In addition functions provided by the GUI can be activated using hotkeys. Type &amp;quot;d&amp;quot; for example to read and display the directory of a drive.&lt;br /&gt;
&lt;br /&gt;
Applications can call the GUI of the OS; and the user returns to the application using the OK icon. The icons are fixed, therefore the layout remains stable throughout its use and on every CPC using FutureOS. &lt;br /&gt;
&lt;br /&gt;
In SPARtan mode the GUI only displays icons which can be used directly. Unused icons will be hidden. In this mode the GUI is more easy to use and you see a bigger part of the wallpaper (if loaded).&lt;br /&gt;
&lt;br /&gt;
=== Desktop functions ===&lt;br /&gt;
&lt;br /&gt;
Watch pictures or movies. View text-files on-screen (scroll up and down) or print them on your printer. When viewing a picture you can adjust MODE and screen format using the cursor keys. When typing a text file it is possible to set the number of columns and lines of the window the text is displayed in.&lt;br /&gt;
&lt;br /&gt;
File headers can also be examined. FutureOS uses expanded but compatible file-headers, that allow a file to be up to 16 MB in length. The file-header can additionally specify the target RAM of a file. Further it can contain a file icon or a short file description.&lt;br /&gt;
&lt;br /&gt;
One or more files can be LOADed, SAVEd, RENamed, ERAsed, COPYd or PRINTed on printer.&lt;br /&gt;
&lt;br /&gt;
Previously used files can be retagged for a second usage, or all files can be untagged.&lt;br /&gt;
&lt;br /&gt;
The I(nformation) icon provides any kind of help (if a help system is installed).&lt;br /&gt;
&lt;br /&gt;
Further there is the [[FutureOS Monitor]], which provides access to RAM, ROM, Z80 registes, I/O ports and allows the testing of routines.&lt;br /&gt;
&lt;br /&gt;
=== Auto-DIR ===&lt;br /&gt;
If Auto-DIR is enabled, then it's enough to click at a drive Icon to read its DIRectory. You can select this feature using the 'Config OS' utility, either from disc or Tool-XROM.&lt;br /&gt;
&lt;br /&gt;
=== Hot keys ===&lt;br /&gt;
Hot keys can be used every time while working in the Desktop. To activate or deactivate a device (drive, hard disc partition f.e.) press Space first, then the corresponding letter from A to M.&lt;br /&gt;
&lt;br /&gt;
A (retag All previously used files), B (jump over next file name without tagging), C (Copy discs), D (display Directory), E (Erase files or format discs), F (Filecopy), G (Go to function below mouse arrow or tag a file name), H (show IDE Hard-disc), I (get Information), J (Jump to first file name), L (Load file), M (enter Machine Monitor), N (reName file or disc), P (Print DIR or file), Q (Quit OS session or start new), S (Save file), U (Untag all files), V (View pictures of text), W (set Alarm time - Wecker), X (eXecute application), Y (edit date), Z (edit time).&lt;br /&gt;
&lt;br /&gt;
=== SPARtan mode ===&lt;br /&gt;
[[Image:SPARtan 1.png|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
The '''SPARtan''' mode reduces the number of displayed icons to a icon set which can be immediately used. Using the Desktop will be easier and you see more of your wallpaper.&lt;br /&gt;
When the Spartan mode is off, all icons will be shown all the time.&lt;br /&gt;
The Spartan mode can be activated by setting a bit in the configuration bytes, either by hand of by using the ''''Konfig OS'''' / ''''Config OS'''' utility (see system application disc).&lt;br /&gt;
&lt;br /&gt;
=== Auto-DIR mode ===&lt;br /&gt;
If the Auto-DIR option is switched on (like in recent releases) it's enough to click on an drive / partition icon to read, sort and show its DIRectory. Furthermore in this mode some 'AI' is activated f.e. when click at the Copy icon and no files are tagged the Desktop will directly jump into Disc-copy mode.&lt;br /&gt;
If the Auto-DIR is off, then you need to do more things 'by hand', but you also have more control over the system.&lt;br /&gt;
The Auto-DIR mode can be activated by setting a bit in the configuration bytes, either by hand of by using the ''''Konfig OS'''' / ''''Config OS'''' utility (see system application disc).&lt;br /&gt;
&lt;br /&gt;
=== Wallpaper ===&lt;br /&gt;
Like for most OS the background of the Desktop can be adapted. This is actually quite easy for FutureOS. Just use the application &amp;quot;-LoadHGB.64K&amp;quot; (English) / &amp;quot;-LadeHGB.64K&amp;quot; (German). HGB stands for &amp;quot;HinterGrundBild&amp;quot; and is German for Wallpaper. There are discs full of wallpapers.&lt;br /&gt;
&lt;br /&gt;
If you want to create your own wallpapers then you'll need a MODE 2 screen with 512 x 256 pixel.&lt;br /&gt;
&lt;br /&gt;
You also can load a wallpaper by hand: Place such a 16 KB (headerless) screen in one of the E-RAMs and set the right system variable of the OS (see file #D.). Here are some Wallpapers:&lt;br /&gt;
&lt;br /&gt;
http://futureos.cpc-live.com/files/Wallpaper_HGBs_Deu-Eng.zip&lt;br /&gt;
&lt;br /&gt;
Or take a direct look at some [[Wallpaper|Wallpapers]]&lt;br /&gt;
&lt;br /&gt;
== FutureOS hardware monitor ==&lt;br /&gt;
The [[FutureOS Monitor]] is a small built in machine monitor of the [[FutureOS]] operating system. It contains basic functions to access (expansion) memory and the Porting system to comfortably access all the CPCs I/O ports. When using FutureOS for the CPC Plus you can also access all memory mapped I/O (hardware sprites, DMA-sound, soft scrolling etc.).&lt;br /&gt;
&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Dump RAM, ROM, expansion RAM or memory mapped I/O (CPC Plus)&lt;br /&gt;
* Edit RAM, expansion RAM or memory mapped I/O (CPC Plus)&lt;br /&gt;
* Access all I/O ports of the CPC and external hardware&lt;br /&gt;
* Edit Z80 registers (previously to calling an machine program). This includes the first and second register set, both index registers, the stack pointer, R and I&lt;br /&gt;
* Configure RAM, ROM, I/O for other functions&lt;br /&gt;
* Move block of memory, ROM, RAM, expansion RAM&lt;br /&gt;
* Initialize block of memory with an 8 or 16 bit value, RAM, expansion RAM&lt;br /&gt;
* Call a machine program or OS function&lt;br /&gt;
* Exit, brings you back to the Desktop&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;caption=&amp;quot;Some preview images of the game&amp;quot;&amp;gt;&lt;br /&gt;
Image:OS-Mon_1.png&lt;br /&gt;
Image:OS-Mon_2.png&lt;br /&gt;
Image:OS-Mon_3.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CBM ==&lt;br /&gt;
[[Image:CBM.png|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;'''C'''ommand '''B'''ar '''M'''enu&amp;quot; ([[CBM|CBM]]) is a partially resident part of FutureOS, which can be easily linked into applications. &lt;br /&gt;
* It's object oriented ('''OO''') user interface consists of several flexible windows, pull down menus and file selectors.&lt;br /&gt;
* In addition hot keys can be used. &lt;br /&gt;
* Using [[CBM|CBM]] as the standard (G/T)UI for FutureOS programs helps making them looking similar and usable in an intuitive way. &lt;br /&gt;
* A part of the CBM is located in the FutureOS ROMs, the flexible part can be individually adapted to its target applications and will be integrated in the application itself.&lt;br /&gt;
&lt;br /&gt;
== File system  ==&lt;br /&gt;
[[Image:HERO-HED.JPG|thumb|192px|Example of FutureOS file header]]&lt;br /&gt;
&lt;br /&gt;
The file system of FutureOS can handle multiple simultaneous floppy disc drives and hard disc partitions. After the selection of the devices FutureOS reads and buffers the directory entries of the devices. This speeds up the the data transfer significantly. Integrated utilities like the multi file copy can copy files from physical sources to different physical destinations in one run. &lt;br /&gt;
&lt;br /&gt;
The file system is compatible with the CPCs native data-, file- and format structures (f. e. File header, Disc formats), but expanded in many ways. FutureOS supports the Data, IBM, System, Vendor and Vortex (704 KB) disc formats. &lt;br /&gt;
&lt;br /&gt;
Filenames can use all 256 different characters and user areas from 0 to 254 (except for &amp;amp;amp;E5, which is reserved for deleted files). Unlike Amsdos, a file that is erased under FutureOS is not shifted to user &amp;amp;E5, but is physically removed from the directory. During this process the directory get sorted. File headers can be displayed as small text files or as graphic icons (f. e. a FutureOS application). An AmsDOS file header has 128 bytes of which most are unused. FutureOS makes use of those unused bytes so that files have a length definition of 24 bit (16 MB file length) and can have a physical RAM select. Therefore a file can be defined to be loaded everywhere in the external RAM. Also a [[FutureOS Header|FutureOS file-header]] can contain a graphical icon, a textual icon or a short description of the file. &lt;br /&gt;
&lt;br /&gt;
FutureOS includes the fastest FDC-based disc- and file-reading and writing routines for the CPC. This is possible by ignoring the interleave factor, reading one physical sector directly after each other to the correct position in memory but also by just starting with the first appearing sector of every new track. In addition the DIRectory is buffered in RAM, the head of the floppy must not step back to look for the next block. The track step rate is increased and can be adjusted for every drive. It's even faster than optimized copy programs like Crowns' [[Crime|Crime]].&lt;br /&gt;
&lt;br /&gt;
== Implementation of Hardware  ==&lt;br /&gt;
&lt;br /&gt;
The OS supports many of the hardware available for the CPC. One of the ambitions of FutureOS is to support all hardware available. Hardware expansions usually need drivers that can be flexibly added to an OS. Contrary to this approach, a goal of FutureOS is to provide a monolithic architecture where all drivers are implemented in a hardcoded way. &lt;br /&gt;
&lt;br /&gt;
*''Disc drives and hard discs:'' FutureOS supports up to eight floppy disc drives and up to four hard disc partitions (Dobbertin HD20 hard disc). It buffers the directories read from any mass storage device in the expansion RAM to speed up drive access.&lt;br /&gt;
&lt;br /&gt;
*''Plug and Play:'' If a hardware expansion is connected to the CPC FutureOS will automatically detect that expansion, initialise it and make it available to user and applications. The architecture of the OS allows you to add and remove hardware on purpose (hot plug and play). You can switch external hardware on or off in the configuration bytes (use ConfigOS utility).&lt;br /&gt;
&lt;br /&gt;
== Memory  Management ==&lt;br /&gt;
=== RAM ===&lt;br /&gt;
* Unlike other CPC-OS the FutureOS uses only small amounts of the memory of the CPC since it is located and executed in ROM.&lt;br /&gt;
* When using the Desktop the OS uses the RAM between &amp;amp;A000 and &amp;amp;BFFF (8 KB).&lt;br /&gt;
* In case an application is running: The RAM that is used by the OS can be reduced to the region between &amp;amp;B800 and &amp;amp;BFFF, in this case only 2 KB are occupied by system variables of the OS.&lt;br /&gt;
* Depending on the amount of active drives and HD partitions additional expansion RAM blocks will be occupied for directory buffering, but there is no reduction in free main memory (first 64 KB). After loading data this buffers can be freed again of course.&lt;br /&gt;
* FutureOS provides an expansion RAM manager containing all needed OS functions to check for, order, allocate, free and manage expansion RAM up to 4 MB.&lt;br /&gt;
* Also files of that length (4 MB) can be loaded and saved at once. This depends on the amount of connected E-RAM of course.&lt;br /&gt;
&lt;br /&gt;
=== ROM ===&lt;br /&gt;
* The core OS uses 64 KB ROM&lt;br /&gt;
* By using fixed ROM numbers quick jumps can be made from one ROM to another ROM without the need of using RAM. This is also true for additional ROMs which want to use the API in the care ROMs A-D.&lt;br /&gt;
* FutureOS provides an expansion ROM (XROM) architecture which allows to add programs as expansion ROMs. For the native OS these ROMs are declared as &amp;quot;extension&amp;quot; and will NOT be initialized.&lt;br /&gt;
&lt;br /&gt;
==== XROMs ====&lt;br /&gt;
* Currently there are a few XROMs for FutureOS:&lt;br /&gt;
** ROManager 2.19&lt;br /&gt;
** System-Tools (English or German)&lt;br /&gt;
** Wallpapers I, II and III&lt;br /&gt;
* The XROMs can be automatically started, f.e. you can have your favorite wallpaper when starting FutureOS. The tools to setup autostart are on the XROM disc.&lt;br /&gt;
&lt;br /&gt;
== OS supported Hardware  ==&lt;br /&gt;
&lt;br /&gt;
==== Printer ports ====&lt;br /&gt;
*7 bit [[Printer Port|printer port]] (native)&lt;br /&gt;
*[[8bit Printer Ports|8 bit printer port]] 6128 Plus using Amstrads CRTC solution&lt;br /&gt;
*[[Happy Computer 8bit Printer Mod|Happy Computer Mod]] using CAS_WRITE as Bit 7.&lt;br /&gt;
&lt;br /&gt;
==== Drives ====&lt;br /&gt;
*3&amp;quot; A, B, C and D drives (C, D need hardware patch) &lt;br /&gt;
*3.5&amp;quot; and 5.25&amp;quot; drive &lt;br /&gt;
*Atari ST 80 Track double-sided B-drive &lt;br /&gt;
*[[Dobbertin|Dobbertin]] D-DOS Double drive. Up to four drives 80 track, double-sided. &lt;br /&gt;
*[[Dobbertin|Dobbertin]] [[XD-DOS]] X-drive 80 tracks, DS&lt;br /&gt;
*[[F1|Vortex disc drives FI-D, F1-S, M1-D, M1-S]]. Own FDC, up to four drives 80 track, double-sided.&lt;br /&gt;
*[[F1|Vortex disc drives F1-X, M1-X]]. Up to 80 track, double-sided.&lt;br /&gt;
and ...&lt;br /&gt;
*[[HxC Floppy Emulator]] (On message &amp;quot;Disc is write protected&amp;quot; put a HFE in HxC or adjust its configuration)&lt;br /&gt;
&lt;br /&gt;
==== Expansion cards ====&lt;br /&gt;
*[[Albireo]] (partial)&lt;br /&gt;
*[[AMRAM2]] (combined EPROM and S-RAM card)&lt;br /&gt;
*[[C4CPC]] 6128 Plus version&lt;br /&gt;
*[[CPC Booster]](+) and MiniBooster&lt;br /&gt;
*[[M4 Board]] (RTC, ROM management)&lt;br /&gt;
*[[SYMBiFACE II|SYMBiFACE II]] (partial)&lt;br /&gt;
*[[SYMBiFACE III|SYMBiFACE III]] (partial)&lt;br /&gt;
*HD64180 Coprocessor card&lt;br /&gt;
*[[EPROM]] cards or EPROM simulator cards like the [[Britannia ROM Board]], [[Dobbertin]] EPROM card, [[Honeysoft ROM Board]], [[Inicron ROM-RAM-Box]], [[KDS Sideways ROM Board]], [[MegaFlash]], [[MegaROM]], [[SuperPower ROM Box]], [[SYMBiFACE II]], SuperROM Plus and others&lt;br /&gt;
&lt;br /&gt;
==== Hard-disc ====&lt;br /&gt;
*[[CPC-IDE]], [[SYMBiFACE II]] and [[X-MASS]] IDE support, but only low-level, FutureOS IDE-ROM needed&lt;br /&gt;
*[[Dobbertin Harddisc|Dobbertin HD20]] (72 KB/s data transfer rate) &lt;br /&gt;
*[[IDE8255]] IDE support, but only low-level, FutureOS IDE-ROM needed&lt;br /&gt;
&lt;br /&gt;
==== Joysticks ====&lt;br /&gt;
*[[Analog Joysticks|Analog Joystick]] (6128 Plus) &lt;br /&gt;
*[[Digital Joysticks]] 1 and 2&lt;br /&gt;
&lt;br /&gt;
==== Memory expansions ====&lt;br /&gt;
* 4 MB expansion from Zaxon&lt;br /&gt;
*[[c't 512 KB internal RAM expansion]] (DIY) (c't magazine)&lt;br /&gt;
*[[Campursoft ROM Board]] (DIY)&lt;br /&gt;
*[[CPC4MB|Jareks 4 MB RAM expansion]] provides 4 MB RAM&lt;br /&gt;
*[[Dk'tronics memory expansion|Dk'tronics]] 64-512 KB and compatibles &lt;br /&gt;
*[[Dobbertin Memory Expansion|Dobbertin]]&lt;br /&gt;
*[[FlashGordon]]&lt;br /&gt;
*[[Inicron RAM-Box|Inicron]]&lt;br /&gt;
*[[Inicron ROM-RAM-Box]]&lt;br /&gt;
*[[M4 Board]]&lt;br /&gt;
*[[MegaFlash]]&lt;br /&gt;
*[[RAM7 2MB memory expansion|RAM7's RAM expansion]]&amp;amp;nbsp;(up to 2 MB) &lt;br /&gt;
*[[RAM BOX]]&lt;br /&gt;
*[[SYMBiFACE II|SYMBiFACE II]]&lt;br /&gt;
*[[X-MEM]]&lt;br /&gt;
*[[Y-MEM]]&lt;br /&gt;
*[[Z-MEM]]&lt;br /&gt;
&lt;br /&gt;
CPC464 and CPC664 users can run FutureOS when using this RAM expansion:&lt;br /&gt;
http://www.cpcwiki.eu/forum/amstrad-cpc-hardware/open-source-diy-512kb-ram-expansion/msg163566/#msg163566&lt;br /&gt;
&lt;br /&gt;
==== Real-Time-Clocks ====&lt;br /&gt;
*[[Dobbertin Smart Watch]] and the version from dxs&lt;br /&gt;
*[[LambdaSpeak III]]&lt;br /&gt;
*[[M4 Board]]&lt;br /&gt;
*[[SYMBiFACE II:Realtime clock|SYMBiFACE II]]&lt;br /&gt;
*[[SYMBiFACE III]]&lt;br /&gt;
*[[Dk'tronics Real Time Clock]]&lt;br /&gt;
&lt;br /&gt;
==== Sound and Music ====&lt;br /&gt;
*[[Amstrad SSA-1 Speech Synthesizer]]&lt;br /&gt;
*[[CTC-AY SDK main fr|CTC-AY]] aka [[PlayCity]]&lt;br /&gt;
*[[Digiblaster]]&lt;br /&gt;
*[[Dk'tronics Speech Synthesizer]]&lt;br /&gt;
*[[FuturePlayer]] for MP3 samples up to 128 kbps (max. 4 MB in size)&lt;br /&gt;
*[[LambdaSpeak]] (also the MP3 module is fully supported)&lt;br /&gt;
*[[Soundplayer]]&lt;br /&gt;
&lt;br /&gt;
==== Networking ====&lt;br /&gt;
*[[Amstrad Serial Interface]]&lt;br /&gt;
*[[CPC Booster]]+ and TotO's MiniBooster&lt;br /&gt;
*[[Schneider RS232 Interface]]&lt;br /&gt;
*[[USIfAC]]&lt;br /&gt;
*[[Virtual Net 96]]&lt;br /&gt;
There is limited support at the moment&lt;br /&gt;
&lt;br /&gt;
=== Additional HIDs (Hot Plug &amp;amp; Play compatible) ===&lt;br /&gt;
&lt;br /&gt;
The following pointer-based input devices are supported by FutureOS. Applications can use them by calling the appropriate OS function in OS-ROMs A, C or D. &lt;br /&gt;
&lt;br /&gt;
==== Mice ====&lt;br /&gt;
*[[Atari-ST mouse adapter|Atari ST mouse adapter]] ([[CPC Magazin|Schneider Magazin]])&lt;br /&gt;
*[[AMX Mouse|AMX Mouse]], [[PS2Mouse|AMX PS/2 Mouse Adapter]]&lt;br /&gt;
*[[CPC-Mousepack 2.0|CPC-Mousepack]] (Reisware)&lt;br /&gt;
*[[GEOS mouse|GEOS mouse]] ([[Commodore 64]] device)&lt;br /&gt;
*[[SYMBiFACE II:PS/2 mouse|PS/2 mouse]] of [[SYMBiFACE II]]&lt;br /&gt;
*[[USB mouse]] of [[SYMBiFACE III]]&lt;br /&gt;
*[[Dk'tronics Mouse Interface]]&lt;br /&gt;
&lt;br /&gt;
==== Lightpens ====&lt;br /&gt;
*[[Dk'tronics Lightpen|Dk'tronics lightpen]]&lt;br /&gt;
*[[Happy Computer Light Pen]] (DIY from German magazine)&lt;br /&gt;
*[[Lindy Light Pen]]&lt;br /&gt;
&lt;br /&gt;
==== Graphic Tablets ====&lt;br /&gt;
*[[Grafpad II|Hegotron Grafpad II]]&lt;br /&gt;
&lt;br /&gt;
==== Trackballs ====&lt;br /&gt;
*[[Atari-ST mouse adapter|Atari ST trackball adapter]] (Schneider Magazin)&lt;br /&gt;
*[[Marconi|Marconi trackball]]&lt;br /&gt;
&lt;br /&gt;
== ROM-included Utilities  ==&lt;br /&gt;
&lt;br /&gt;
The FutureOS ROMs already include several utilities as an addition to the operating system. Tools like copy (files or discs), format discs (data-, system-, ibm- and Vortex-format), erase files, rename files, type and print files, set alarm time, set time of RTC, verify discs or directory refreshing, display file-header etc. are available without the need to load them from an external medium. &lt;br /&gt;
&lt;br /&gt;
Multiple files can be copied between different physical media and user numbers / directories in one go. &lt;br /&gt;
&lt;br /&gt;
A small machine monitor is also provided. The [[FutureOS Monitor]] provides features like CPU register editing (all!), access to the I/O ports, memory dump and editing, and display and manipulation of the ASIC contents (6128 Plus). Memory blocks can be copied or initialized. It is possible to call (and return from) a routine with defined CPU registers (complete register set) and memory.&lt;br /&gt;
&lt;br /&gt;
== OS functions ==&lt;br /&gt;
&lt;br /&gt;
Only some examples are mentioned.&lt;br /&gt;
* The String Editor: It allows to enter strings up to 64 KB, different character sets can be used, a range of legal letters can be defined, four keyboard levels (normal, shift, control and shift+control) can be used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developing for FutureOS ==&lt;br /&gt;
&lt;br /&gt;
You can develop very freely: the RSTs are free for use, you can choose the interrupt mode and access all the hardware. Also the second register set of the Z80 can be completely used by applications - in contrast to all other OS for the CPC.&lt;br /&gt;
&lt;br /&gt;
*''Z80 Assembler:'' You can use an assembler for AmsDOS or for CP/M. Switching between AmsDOS and FutureOS is fast and using |FDESK allows to come back to AmsDOS with the first 48 KB or RAM remaining untouched. There is a Z80 library for FutureOS the programmer can use for own applications.&lt;br /&gt;
&lt;br /&gt;
*''The Command Bar Menu:'' In addition [[CBM]] can make application development easy and quick. All needed sources are provided and explained. A variety of sample programs exist to show how to use CBM.&lt;br /&gt;
&lt;br /&gt;
*''Programming in C for FutureOS:'' With [[FIOLIB|FIOLIB]] - the IO-Lib for FutureOS it's also possible to use C as a programming language. Beside the usual I/O the FIOLIB provides a lot of valuable functions for management of text, keyboard, files, relative files, screen, colors, graphic and more.&lt;br /&gt;
&lt;br /&gt;
== Applications / Demos / Games  ==&lt;br /&gt;
&lt;br /&gt;
The following programs can be&amp;amp;nbsp;downloaded&amp;amp;nbsp;at the FutureOS homepage, see Weblinks below. &lt;br /&gt;
&lt;br /&gt;
*[[Burnin Wheels]] (Soft scrolling car racing game) &lt;br /&gt;
*[[Captain Future]] (4 MB movie that uses Jareks 4 MB expansion)&lt;br /&gt;
*[[Cyber Huhn|Cyber Chicken]] (3D space game)&lt;br /&gt;
*[[CBM|CBM]] (non resident OS expansion) &lt;br /&gt;
*[[Darth Vader]] (stand alone demo)&lt;br /&gt;
*[[FilmeMacher|FilmeMacher]] (movie player) &lt;br /&gt;
*[[FIOLIB|FIOLIB]] (C library) &lt;br /&gt;
*[[Flash ROManager|Flash ROManager]] (management of Jareks Flash ROM expansion) &lt;br /&gt;
*[[FuturePlayer|FuturePlayer]] (MP3 and WAV player) - Ask TFM for MP3 files on discs&lt;br /&gt;
*[[FutureView|FutureView]] (disc mag) &lt;br /&gt;
*[[FutureTex|FutureTex]] (text editor)&lt;br /&gt;
*[[Gerelakos|Gerelakos]] ([[RPG]] under construction) &lt;br /&gt;
*[[GMSK|GMSK]] (sprite converter) &lt;br /&gt;
*[[Gravitation Zero]]&lt;br /&gt;
*[[GSED]] (Graphic Playground Editor for 2D / 3D games) &lt;br /&gt;
*[[H.E.R.O.]] by [[Flynn]]&lt;br /&gt;
*Kane (sprite grabber)&lt;br /&gt;
*[[Meg Ryan sample]] demo&lt;br /&gt;
*[[MegaFlashROManager]] (management of the MegaFlash Pseudo-ROMs for FutureOS and BASIC)&lt;br /&gt;
*[[MMcR Format]] (Ultrafast formatting tool for batches of discs)&lt;br /&gt;
*[[NGC4650A]]&lt;br /&gt;
*[[Odiesofts Snow]]&lt;br /&gt;
*[[Return of the Sisters|Return of the Sisters]] (a Giana Sisters Clone) WIP name &amp;quot;A tribute to the Sisters...&amp;quot;&lt;br /&gt;
*[[ROManager|ROManager]] (management of a variety of Flash- and Pseudo-ROM cards)&lt;br /&gt;
*[[Rotating Fractal]] (stand alone demo)&lt;br /&gt;
*[[Star Trek sample demo]]&lt;br /&gt;
&lt;br /&gt;
== Conclusion  ==&lt;br /&gt;
&lt;br /&gt;
FutureOS is designed as an OS with fast system calls and support for nearly all CPC expansions. It has specialised file handling and memory management capabilities that support programs up to 4 MB and files up to 16 MB. The idea is that development of professional software, games, graphic tools, word processors, sound, management of big amounts of data, and programming languages are possible in this environment. At this point, the user can do all this, like listen to MP3 files, work with graphic, use and create C programs, watch movies, demos and play games (see weblinks).&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
*[http://www.FutureOS.de FutureOS.de]&lt;br /&gt;
*[http://groups.yahoo.com/group/FutureOS/ FutureOS Downloads &amp;amp; Mailing list]&lt;br /&gt;
*[http://cpc-live.com/javacpc.php?system=FutureOS&amp;amp;title=FutureOS&amp;amp;full=true&amp;amp;boot=|os&amp;amp;disc=FutureOS_Darth.dsk&amp;amp;discb=FutureOS_Fraktal.dsk&amp;amp;discc=FutureOS_FV-I.dsk&amp;amp;discd=FutureOS_FV-II.dsk&amp;amp;disce=FutureOS_FV-III.dsk&amp;amp;discf=FutureOS_FV-IVeng.dsk&amp;amp;discg=FutureOS_NGC4650A.dsk Try and use FutureOS online at JavaCPC]&lt;br /&gt;
*[http://koaks.amstrad.free.fr/amstrad/documents/article_futureos.html FutureOS, le supersonique du CPC]&lt;br /&gt;
*[http://www.phenixinformatique.com/modules/smartsection/item.php?itemid=15 Interview de TFM]&lt;br /&gt;
&lt;br /&gt;
=== Discussion Forum ===&lt;br /&gt;
*[http://www.cpcwiki.eu/forum/programming/futureos-corner/ Discussions in English]&lt;br /&gt;
*[http://cpc-live.com/forum/index.php/board,5.0.html Diskussionen auf Deutsch]&lt;br /&gt;
&lt;br /&gt;
=== Youtube Videos ===&lt;br /&gt;
There is a special youtube channel for FutureOS, it provides different playlists for different topics related to this OS. Please have a look here:&lt;br /&gt;
*[https://www.youtube.com/user/realTFM/playlists FutureOS Playlists]&lt;br /&gt;
&lt;br /&gt;
[[Category:4 MB RAM Software]] &lt;br /&gt;
[[Category:Cartridges]] &lt;br /&gt;
[[Category:CPC GUI]] &lt;br /&gt;
[[Category:CPC_Plus]] &lt;br /&gt;
[[Category:Digiblaster]]&lt;br /&gt;
[[Category:Expansion ROM]] &lt;br /&gt;
[[Category:Extended RAM Software]] &lt;br /&gt;
[[Category:FutureOS]] &lt;br /&gt;
[[Category:Operating_System]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=BENG!&amp;diff=103018</id>
		<title>BENG!</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=BENG!&amp;diff=103018"/>
				<updated>2019-02-23T15:03:36Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:eurobeng.jpg|thumb|Three members of BENG!: Alien, Crown and K-OS at the Euromeeting Reims 1992]]&lt;br /&gt;
'''BENG!''' (Bad European News Gang) was founded by the death of the PDW-Group (Public Domain Wuppertal) by [[DSC]] and some other ex-members in 1991. It was very active in the years 1992 and 1993. A lot of demos and disc fanzines have been released in this time.&lt;br /&gt;
&lt;br /&gt;
== BENG! members ==&lt;br /&gt;
&lt;br /&gt;
During its active time the BENG! members have been the following:&lt;br /&gt;
&lt;br /&gt;
* [[Alien]] (code)&lt;br /&gt;
* [[Bad Error]] (code)&lt;br /&gt;
* [[CPC-Mike]] (code)&lt;br /&gt;
* [[Crown]] (code)&lt;br /&gt;
* [[DSC]] (organizer, swapper)&lt;br /&gt;
* [[Hexenmeister]] (graphics)&lt;br /&gt;
* [[Joker]] (code)&lt;br /&gt;
* [[K-OS]] (swapper)&lt;br /&gt;
* [[Kangaroo MusiQue]] (musician)&lt;br /&gt;
* [[Leather Rebel]] (editor)&lt;br /&gt;
* [[Madram]]&lt;br /&gt;
* [[Malc]]&lt;br /&gt;
* [[Prodatron]] (code)&lt;br /&gt;
* [[Red Storm]]&lt;br /&gt;
* [[Rex]] (graphics)&lt;br /&gt;
* [[Sledge Hammer]]&lt;br /&gt;
* [[TIC]]&lt;br /&gt;
* [[Treble A]]&lt;br /&gt;
* [[Vampire]]&lt;br /&gt;
&lt;br /&gt;
== Web links ==&lt;br /&gt;
&lt;br /&gt;
[http://www.beng.de BENG! homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:Scene group]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Mittwintermeeting_13&amp;diff=103017</id>
		<title>Mittwintermeeting 13</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Mittwintermeeting_13&amp;diff=103017"/>
				<updated>2019-02-23T15:01:38Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Mittwintermeeting]] goes straight to the 13th edition in Kirchen / Germany.&lt;br /&gt;
&lt;br /&gt;
Over the last years, the Meeting has grown as a place where people from all the different home-computer&lt;br /&gt;
systems of the 80's can come together for a nice weekend. &lt;br /&gt;
&lt;br /&gt;
For now, we cover Amstrad, Atari, Acorn, Commodore, MSX and more. Looking forward to grow even further :)&lt;br /&gt;
&lt;br /&gt;
As in the last time, the party was held in a blockhouse directly at the eastborder of the Westerwald in Kirchen / Germany.&lt;br /&gt;
&lt;br /&gt;
Like everytime, everyone who is interested in old homecomputers is very welcome!&lt;br /&gt;
&lt;br /&gt;
'''The Meeting takes place from 15. to 17. March 2019'''&lt;br /&gt;
&lt;br /&gt;
== The Party-Place ==&lt;br /&gt;
&lt;br /&gt;
DRK Vereinshaus Kirchen&amp;lt;br&amp;gt;An der Buswende (Dorfstraße 80)&amp;lt;br&amp;gt;57548 Kirchen&amp;lt;br&amp;gt;Germany&amp;lt;br&amp;gt;GeoCoords: (longitude/latitude)&amp;amp;nbsp;:&amp;amp;nbsp; 7°54'40.84&amp;quot;E , 50°48'49.74&amp;quot;N &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If you have any more questions please send us a PM: Prodatron or SOS&lt;br /&gt;
&lt;br /&gt;
== Accommodation == &lt;br /&gt;
* Hotel &amp;quot;zum weißen Stein&amp;quot; (single bedroom EUR 71,00)&lt;br /&gt;
* bring your own Airbed and sleep at the party place (EUR 0)&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
(planned)&lt;br /&gt;
&lt;br /&gt;
*[[Prodatron|Prodatron]]&lt;br /&gt;
*[[SOS]]&lt;br /&gt;
*Thorn&lt;br /&gt;
*Thomas W.&lt;br /&gt;
*[[Insane]]&lt;br /&gt;
*[[Shining]]&lt;br /&gt;
*[[TFM]]&lt;br /&gt;
*[[Tolkin]]&lt;br /&gt;
*[[Brainblaster]]&lt;br /&gt;
*[[xesrjb]]&lt;br /&gt;
*[[Kangaroo MusiQue]]&lt;br /&gt;
*Hans/TMTLogic&lt;br /&gt;
*Frits/TMTLogic&lt;br /&gt;
*EdoZ/SymbiosiS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPC_Forever&amp;diff=101366</id>
		<title>CPC Forever</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPC_Forever&amp;diff=101366"/>
				<updated>2018-03-30T15:22:32Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is about the German fanzine. For details of the 1990s Irish fanzine of the same name, see [[CPC Forever (Ireland)]].''&lt;br /&gt;
&lt;br /&gt;
CPC forever was a german paper magazine published by [[Villain]].&lt;br /&gt;
&lt;br /&gt;
The magazine was mainly focused on the CPC, but there were interesting articles about other systems / topics, too.&lt;br /&gt;
&lt;br /&gt;
== CPC forever #1 (May 2005) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cpc-forever-no1.jpg|thumb|Cover of CPC forever #1]]&lt;br /&gt;
&lt;br /&gt;
'''Contents:'''&lt;br /&gt;
* Behind the scenes: [http://www.cpc-forever.com Cpc-forever.com]&lt;br /&gt;
* Emulator: The story about [[WinCPC]]&lt;br /&gt;
* Game review: Bumpy&lt;br /&gt;
* Game review: Silkworm&lt;br /&gt;
* Hardware: connect Competition Pro USB to the CPC&lt;br /&gt;
* Interview with [[Pentagon]] / [[Noob Inc.]]&lt;br /&gt;
* RDFS - Ram disc file system&lt;br /&gt;
* Using harddiscs with [[BDOS]] ([[BonnyDOS]])&lt;br /&gt;
* [[XzentriX Meeting 2005]] meeting report&lt;br /&gt;
&lt;br /&gt;
'''Download:'''&lt;br /&gt;
* [ftp://ftp.cmo.de/pub/Computer/Amstrad_CPC/CPC-Magazine/Deutschland/CPC-Forever/CPC-Forever-No1.pdf PDF version]&lt;br /&gt;
&lt;br /&gt;
== CPC forever #2 (December 2005) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cpc-forever-no2.jpg|thumb|Cover of CPC forever #2]]&lt;br /&gt;
&lt;br /&gt;
'''Contents:'''&lt;br /&gt;
* CP/M: Using Yaze-AG Z80 emulator with Z3Plus&lt;br /&gt;
* Game review: Justin&lt;br /&gt;
* Game review: MegaPhoenix&lt;br /&gt;
* Game review: Power Drift &lt;br /&gt;
* Game review: Reisende im Wind&lt;br /&gt;
* Game review: Shaolins Road&lt;br /&gt;
* Game review: Super Cycle&lt;br /&gt;
* Hardware: Building an RGB cable&lt;br /&gt;
* Hardware: connection of a 3.5&amp;quot; discdrive with a side switch&lt;br /&gt;
* Hardware: Review of the [[CPC TREX|CPC T-Rex]]&lt;br /&gt;
* Interview with [[Odiesoft]]&lt;br /&gt;
* Programming: Cross-compiling with Z88dk&lt;br /&gt;
* [[SymbOS]]&lt;br /&gt;
&lt;br /&gt;
'''Download:'''&lt;br /&gt;
* [ftp://ftp.cmo.de/pub/Computer/Amstrad_CPC/CPC-Magazine/Deutschland/CPC-Forever/CPC-Forever2.1.pdf PDF version]&lt;br /&gt;
&lt;br /&gt;
== CPC forever #3 (September 2006)  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cpc-forever-no3.jpg|thumb|Cover of CPC forever #3]] &lt;br /&gt;
&lt;br /&gt;
The third issue was released on the [[XzentriX Meeting 2006|XzentriX Meeting 2006]] as a special for the visitors in a printed version. It´s also the first time that '''CPC forever''' contains an article in english. &lt;br /&gt;
&lt;br /&gt;
'''Contents:''' &lt;br /&gt;
&lt;br /&gt;
*Meeting Report: Party on the Freusburg ([[Mittwintermeeting 1|Mittwintermeeting 1]]) &lt;br /&gt;
*Vintage Computer Festival ([[VCFe 7|VCFe 7]]) &lt;br /&gt;
*[[WinApe|WinApe Alpha 7]] &lt;br /&gt;
*The Z80 brothers of the CPC - Part 1: The MSX &lt;br /&gt;
*Game review: [[Gates to Hell|Gates to Hell]] &lt;br /&gt;
*Game review: [[Karateka|Karateka]] &lt;br /&gt;
*Game review: [[Kick Off|Kick Off]] &lt;br /&gt;
*News from France &lt;br /&gt;
*Firmware calls under [[CP/M|CP/M]]&lt;br /&gt;
&lt;br /&gt;
'''Download:''' &lt;br /&gt;
&lt;br /&gt;
*[http://lenoere.de/~villain/test/CPCForever3.pdf PDF version]&lt;br /&gt;
&lt;br /&gt;
[[Category:Fanzines]] [[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Colour_Personal_Computing&amp;diff=101365</id>
		<title>Colour Personal Computing</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Colour_Personal_Computing&amp;diff=101365"/>
				<updated>2018-03-30T15:20:13Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Colour_Personal_Computing,_Issue_2_2018-03-30_09-45.png|thumbnail|Colour Personal Computing, Issue 2]]&lt;br /&gt;
&lt;br /&gt;
Colour Personal Computing is a fanzine dedicated to the Amstrad CPC, written by James Ford (Skunkfish).&lt;br /&gt;
&lt;br /&gt;
Each issue is A5 sized and has a minimum of 32 pages, covering the latest news, game previews and reviews, interviews, hardware and much more.&lt;br /&gt;
&lt;br /&gt;
The first issue of the fanzine is available in black and white but also had a limited run in colour to those who backed the kickstarter campaign. A Kickstarter campaign was launched on the 31st July to raise funds towards the print run of the first issue.&lt;br /&gt;
&lt;br /&gt;
The second issue is available in colour.&lt;br /&gt;
&lt;br /&gt;
[[Category:Fanzines]] [[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=FutureOS_release_meeting&amp;diff=100486</id>
		<title>FutureOS release meeting</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=FutureOS_release_meeting&amp;diff=100486"/>
				<updated>2017-12-21T14:04:21Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The FutureOS Release Meeting was organized by [[TFM]] of [[FutureSoft]] in Munich in 1994. At this meeting the new and revolutionary operating system [[FutureOS]] has been released for the Amstrad/Schneider CPC6128 and 6128 Plus computers. The participation at the meeting was free. One could sleep at the meeting place in sleeping bags or hotels near by.&lt;br /&gt;
&lt;br /&gt;
== Participants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster]] of [[Frankenteam]]&lt;br /&gt;
*[[Dark Sector]]&lt;br /&gt;
*[[Doc Bartoc]] of [[Bollaware]]&lt;br /&gt;
*[[Gert Genial]] of [[Frankenteam]]&lt;br /&gt;
*[[Hage]] of [[Wizcat]] &lt;br /&gt;
*[[Kangaroo]]&lt;br /&gt;
*[[Mr. Ams]]&lt;br /&gt;
*[[Odiesoft]]&lt;br /&gt;
*[[Overload]]&lt;br /&gt;
*[[Schlumpf]] of [[Frankenteam]]&lt;br /&gt;
*[[Siggi]] of [[Bollaware]]&lt;br /&gt;
*[[Steve]] of [[Wizcat]] &lt;br /&gt;
*[[Sync]] &lt;br /&gt;
*[[TFM]] of [[FutureSoft]]&lt;br /&gt;
*[[Tolkin]] of [[FutureSoft]]&lt;br /&gt;
*[[Villain|Villain]]&lt;br /&gt;
&lt;br /&gt;
Further a lot of members of the [[SCUG]] have been visiting the release. And may I've forgotten some... it's long ago.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;br /&gt;
[[Category:FutureOS]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Das_Gro%C3%9Fe_Floppy_Buch&amp;diff=96938</id>
		<title>Das Große Floppy Buch</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Das_Gro%C3%9Fe_Floppy_Buch&amp;diff=96938"/>
				<updated>2016-11-24T18:57:02Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Das Grosse Floppy Buch.jpg|right|thumb|250px|Frontpage]]&lt;br /&gt;
&lt;br /&gt;
Contents unknown please write more!&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
{|{{Prettytable|width: 700px; font-size: 2em;}}&lt;br /&gt;
&lt;br /&gt;
|Title:|| '''Das Grosse Floppy Buch'''&lt;br /&gt;
|-&lt;br /&gt;
|Authors:|| Brückmann - Schieb&lt;br /&gt;
|-&lt;br /&gt;
|Publisher:|| [[Data Becker]]&lt;br /&gt;
|-&lt;br /&gt;
|Year:|| 1986&lt;br /&gt;
|-&lt;br /&gt;
|Pages:|| 422&lt;br /&gt;
|-&lt;br /&gt;
|ISBN:|| '''3-89011-093-2'''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
&lt;br /&gt;
*[[Media:Floppybuch.pdf|''Das große Floppybuch'']] (PDF)&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Grosse Floppy Buch, Das}}&lt;br /&gt;
[[Category:Books]]&lt;br /&gt;
[[Category:Scanned books]]&lt;br /&gt;
[[Category:Book cover]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Main_Page&amp;diff=94854</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Main_Page&amp;diff=94854"/>
				<updated>2015-12-24T11:30:42Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
&amp;lt;center&amp;gt;This site is an encyclopaedia on all things [[Amstrad|Amstrad]] [[CPC|CPC]] related. There are now '''[[Special:Allpages|{{NUMBEROFARTICLES}} articles]]''' about the CPC available.&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[Image:forum.png|300px|link=http://www.cpcwiki.eu/forum]]      [[Image:Vs.png|300px|link=http://www.cpcwiki.eu/index.php/Speccy_Port]]&amp;lt;/center&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid rgb(255, 201, 201); margin: 0px 0px 5px; padding: 0.5em 1em; background-color: rgb(255, 243, 243);&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt; '''CPC Related News''' &amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Traxtor.png|thumb|320px|[http://www.cpcwiki.eu/forum/games/new-game-the-return-of-traxtor/ The Return of Traxtor]]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:20em; overflow:auto; border: 1px solid #FFC9C9&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*20/12/15: After more than one decade Overlanders released [http://www.pouet.net/prod.php?which=66699/ Points Barres]&lt;br /&gt;
*27/11/15: New game released! [http://www.cpcwiki.eu/forum/games/new-game-the-return-of-traxtor/ The Return of Traxtor]&lt;br /&gt;
*26/11/15: '''[[WinApe|WinAPE]]''' 2.0 Beta 1 released. [http://www.winape.net/ Download]&lt;br /&gt;
*02/09/15: '''iMPdraw Lite v1.132''' is now released. [http://www.cpcwiki.eu/forum/programming/impdraw-v1-0f/60/ Download]&lt;br /&gt;
*28/08/15: '''[[FutureOS]] system .8''' comprehensive update released. [http://futureos.cpc-live.com Download]&lt;br /&gt;
*27/08/15: [[MegaFlashROManager|ROManager]] 2.14 released. [http://futureos.cpc-live.com/files/ROManager_ALL.zip Download]&lt;br /&gt;
*11/05/15: '''CPCtelera''', a cross-platform game development framework was [http://www.cpcwiki.eu/index.php/CPCtelera released]&lt;br /&gt;
*21/03/15: '''[[C4CPC]]''', a cartridge replacement for PLUS and GX4000 was [http://www.cpcwiki.eu/index.php/C4CPC released]&lt;br /&gt;
*02/01/15: [[Cosmos|COSMOS]] v.22 (final version) has been [http://www.cpcwiki.eu/index.php/Cosmos released]&lt;br /&gt;
*14/12/14: '''X-MASS''', Add a [http://www.cpcwiki.eu/forum/news-events/x-mass-a-mass-storage-expansion-for-all-cpc/msg91048/#msg91048 128MB mass-storage] to your CPC.&lt;br /&gt;
*30/08/14: '''[[SymbOS]]''' 2.1 Final [http://www.cpcwiki.eu/forum/news-events/symbos-2-1-final-released released]&lt;br /&gt;
*14/08/14: '''[[PlayCity]]''', Add [http://www.cpcwiki.eu/forum/amstrad-cpc-hardware/playcity-aka-ctc-ay-(mx4)-for-august-!!!/ 6ch stereo audio, Z80 CTC...] to your CPC.&lt;br /&gt;
*22/04/14: '''X-MEM''', Add up to [http://www.cpcwiki.eu/forum/news-events/x-mem-a-new-memory-expansion-for-all-cpc/ 512K RAM/ROM] on your 464/664/6128.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- 12 last news only --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;gallery widths=128px  heights=96px&amp;gt;&lt;br /&gt;
Image:Cpctelera compo.jpg|[http://www.cpcwiki.eu/index.php/CPCtelera CPCtelera]&lt;br /&gt;
Image:C4CPC_CprSelect.png|[http://www.cpcwiki.eu/index.php/C4CPC C4CPC]&lt;br /&gt;
Image:X-MASS01.jpg|[http://www.cpcwiki.eu/forum/news-events/x-mass-a-mass-storage-expansion-for-all-cpc/msg91048/#msg91048 X-MASS MX4 Board]&lt;br /&gt;
Image:symbos21cpc.gif|[[SymbOS]] 2.1&lt;br /&gt;
Image:PlayCity.jpg|[http://www.cpcwiki.eu/index.php/PlayCity PlayCity]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- 5 last pictures only --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align=right&amp;gt;...[[OldNews|Older News]]...&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;!-- WEIRD TABLE START --&amp;gt;&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; class=&amp;quot;FCK__ShowTableBorders&amp;quot; &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot; &lt;br /&gt;
| &amp;lt;div style=&amp;quot;border: 1px solid rgb(176, 176, 176); margin: 0px 0px 5px; padding: 0.5em 1em; background-color: rgb(238, 238, 238);&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== CPCWiki related ===&lt;br /&gt;
*[[CPCWiki updates]]&lt;br /&gt;
*[[Donors]]&lt;br /&gt;
&lt;br /&gt;
'''Become an Author!'''&lt;br /&gt;
&amp;lt;createbox&amp;gt; &lt;br /&gt;
default=Enter name of article to create &lt;br /&gt;
buttonlabel=Create article! &lt;br /&gt;
width=40 &lt;br /&gt;
&amp;lt;/createbox&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid rgb(176, 176, 176); margin: 0px 0px 5px; padding: 0.5em 1em; background-color: rgb(238, 238, 238);&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: right;&amp;quot;&amp;gt;&amp;lt;small&amp;gt;'''All [[Special:Wantedpages|wanted articles]]''' &amp;amp;#124; [[:Category:Stub|Extendable Stubs]] | '''[[Special:ContributionScores|List of most active contributors]]'''&amp;lt;/small&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid rgb(228, 222, 222); margin: 0px 0px 5px; padding: 0.5em 1em; background-color: rgb(249, 249, 249);&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Did you know?  ===&lt;br /&gt;
&lt;br /&gt;
*When the 664 was being developed, Sugar was already looking (and hinting publicly!) at the 6128 &lt;br /&gt;
*The [[472|CPC 472]] was a model released in Spain with an extra unaccessible 8 KB of RAM to circumvent a spanish tax that was charged on imported machines with up to 64 KB memory.&lt;br /&gt;
&lt;br /&gt;
*With a possible total amount of '''832 x 288 pixel''' (576 interlaced) the [[CPC|CPC]] was the 8 bit homecomputer with the highest screen resolution ever.&lt;br /&gt;
&lt;br /&gt;
*'''OpenOffice''' for Windows/Linux is a direct descendant of [[Star-Division|StarWriter]] for the CPC. &lt;br /&gt;
*The transfer speed of the [[CPC Booster|CPC Booster +]] serial interface is faster than a standard '''DSL connection'''.&lt;br /&gt;
&lt;br /&gt;
*[[SymbOS|SymbOS]] can handle more than '''50 times''' bigger hard discs than MS Windows 95A. &lt;br /&gt;
*[[FutureOS|FutureOS]] can load 178 KB in '''9 seconds''' from floppy disc and manages up to '''4 MB''' of RAM &lt;br /&gt;
&amp;lt;/div&amp;gt; &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=BonnyDOS&amp;diff=86903</id>
		<title>BonnyDOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=BonnyDOS&amp;diff=86903"/>
				<updated>2013-03-30T08:32:11Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Links */ Updated&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Bdos screenshot.JPG|thumb|300px|BonnyDOS after boot]] &lt;br /&gt;
&lt;br /&gt;
'''BonnyDOS''' is a system extension to [[AMSDOS|AMSDOS]] by [[Brueggi|Brueggi]] of [[Noob Inc.|Noob Inc.]] ([[Timo Brueggmann|Timo Brueggmann]]). This extension allows the use of a harddisc which is connected with the [[SYMBiFACE II|SYMBiFACE II]]. BonnyDOS uses its own filesystem called [[BFS16|BFS16]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Features  ==&lt;br /&gt;
&lt;br /&gt;
*Up to 20 Partitions &lt;br /&gt;
*Partition-Size up to 2 GB &lt;br /&gt;
*A kind of &amp;quot;ENV-Variables&amp;quot; &lt;br /&gt;
*COMMAND-Directory (comparable with C:\DOS) &lt;br /&gt;
*PATH-Variable &lt;br /&gt;
*optional Autoboot (Basic+BINary files) &lt;br /&gt;
*optional Functionkey-Definition &lt;br /&gt;
*Protected Files and Directories&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
With an additional Tool, it is possible to read/write BFS16-Drives on PC. More Tools are available on the BonnyDOS System-Disk. &lt;br /&gt;
&lt;br /&gt;
== Commands  ==&lt;br /&gt;
&lt;br /&gt;
BonnyDOS has approximatly 45 [[RSX|RSX]] commands, which can be used in AMSDOS. &lt;br /&gt;
&amp;lt;pre&amp;gt;|0, |1, |LOGIN, |LOGOUT, |DCOPY, |COPYD, |FCAT, |FDEL, |FGET, |FPUT&lt;br /&gt;
|COPY, |C, |AMS, |STANDBY, |FORMAT, |MD, |CD, |RD, |DEL, |ATTRIB&lt;br /&gt;
|RE, |SORT, |FIND, |PART, |CATS, |HERR, |FGET, |FPUT, |FCAT, |FDEL&lt;br /&gt;
|ECHO.ON, |ECHO.OFF, |RDIR, |GDIR, |SNA, |SETUP, |INFO, |PFREE,&lt;br /&gt;
|PSIZE, |ADRV, |REBOOT, |FT.ON, |FT.OFF, |PAGE, |GETENV, |SET, |EXAMINE, |TYPE, |VERSION&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
== Links  ==&lt;br /&gt;
&lt;br /&gt;
[http://lulu423gina.funpic.de/ BDOS and BDOS/286]&lt;br /&gt;
&lt;br /&gt;
== Manual  ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:BDOS_1.72.pdf|BonnyDOS manual (German)]] (pdf)&lt;br /&gt;
* [[Media:BonnyDOS.pdf|BonnyDOS manual (Spanish)]] (pdf)&lt;br /&gt;
* [[Media:BDOS_ROM_1.72.zip|BonnyDOS ROMs]]&lt;br /&gt;
* [[Media:BDOS_SystemDisks.zip|BonnyDOS System Disks]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Abandonware]] [[Category:Disc Operating_System]] [[Category:Manual]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Roman&amp;diff=86646</id>
		<title>Roman</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Roman&amp;diff=86646"/>
				<updated>2013-03-07T21:24:38Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ROMAN is a ROM-Manager for AMSDOS developed by [[Brueggi]] of [[PNG]]. ROMAN is fully compatible with the MegaFlash-ROM-Board from  [[Bryce]] and to the [[SYMBiFACE II]] from [[Dr. Zed]] and will be compatible with the upcoming [[MegaFlash EX]] from [[SPRING]]/[[PNG]].&lt;br /&gt;
&lt;br /&gt;
One highlight of ROMAN is its ROM-generator, wich can be used to generate ROMs out of normal binary programms. You can add an RSX-command to start the programm directly out of the generated ROM.&lt;br /&gt;
&lt;br /&gt;
You can use ROMs with or without headers as BIN or ASCII. The ROMAN can also be used directly as a ROM itself. Start the ROMAN by running “DISC” and burn ROMAN.ROM to a ROM-Number of your choice. Start ROMAN from ROM by using the RSX-Command:|ROM&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Roman&amp;diff=86645</id>
		<title>Roman</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Roman&amp;diff=86645"/>
				<updated>2013-03-07T21:24:18Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Created page with &amp;quot; ROMAN is a ROM-Manager for AMSDOS developed by Brueggi of PNG. ROMAN is fully compatible with the MegaFlash-ROM-Board from  Bryce and to the SYMBiFACE II from...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
ROMAN is a ROM-Manager for AMSDOS developed by [[Brueggi]] of [[PNG]]. ROMAN is fully compatible with the MegaFlash-ROM-Board from  [[Bryce]] and to the [[SYMBiFACE II]] from [[Dr. Zed]] and will be compatible with the upcoming [[MegaFlash EX]] from [[SPRING]]/[[PNG]].&lt;br /&gt;
One highlight of ROMAN is its ROM-generator, wich can be used to generate ROMs out of normal binary programms. You can add an RSX-command to start the programm directly out of the generated ROM.&lt;br /&gt;
You can use ROMs with or without headers as BIN or ASCII. The ROMAN can also be used directly as a ROM itself. Start the ROMAN by running “DISC” and burn ROMAN.ROM to a ROM-Number of your choice. Start ROMAN from ROM by using the RSX-Command:|ROM&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=MegaFlash&amp;diff=86486</id>
		<title>MegaFlash</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=MegaFlash&amp;diff=86486"/>
				<updated>2013-02-18T19:49:55Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Description */ Added ROMAN as Software for ROM Management&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:MegaFlash_Final.jpg|thumb|380px|right|The MegaFlash]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The MegaFlash is a ROMBoard similar to the [[MegaROM]]. It provides up to 32 virtual [[ROM|ROMs]] (Numbered 0 to 31) in a single 512K Flash ROM, but unlike the MegaROM, the MegaFlash can be populated directly from the CPC using [[User:TFM|TFMs]] [[MegaFlashROManager]] (available for Basic and [[FutureOS]]) or with [http://www.cpc-png.de/roman-1-0/ ROMAN] by [[Brueggi]] of [[PNG]] without the need for an EPROM Burner or any additional hardware. Other ROManagement software will currently not work with the MegaFlash. &lt;br /&gt;
&lt;br /&gt;
Being based on Flash technology it also doesn't require a battery like other solutions did in the past. Unfortunately, due to complexity, the PCB design needs to be double-sided, making this project a little more difficult for hobbiests to build than the MegaROM was.&lt;br /&gt;
&lt;br /&gt;
The complete hardware of the MegaFlash was developed by [[User:Bryce|Bryce]] and released in August 2011.&lt;br /&gt;
&lt;br /&gt;
If you have any further questions regarding this project contact Bryce through the Wiki Forum.&lt;br /&gt;
&lt;br /&gt;
== Warning / Disclaimer ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Although I have taken the utmost care preparing this documentation, I do not guarantee that it is error free and I accept no responsibility for damage to anyone’s CPC, other personal equipment or injury inflicted on you or others. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Circuit ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:MegaFlash_Sch.PNG|800px|centre]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main component on the PCB is the Flash Memory. This must be a W29C040-90 (ie: the Winbond version) to be fully compatible with TFMs [[MegaFlashROManager]] The five other ICs are standard TTL Logic devices and only need to be of the type 74LSxx (74HCxx, 74Fxx etc will also work but are not necessary in this application). The finished PCB is approx. 70mm x 55mm.&lt;br /&gt;
&lt;br /&gt;
== Parts List ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the Parts list for the Centronics version:&lt;br /&gt;
&lt;br /&gt;
 {|{{Prettytable|width: 700px; font-size: 2em;}}&lt;br /&gt;
|''Component''||''Quantity''&lt;br /&gt;
|-&lt;br /&gt;
|W29C040-90||1&lt;br /&gt;
|-&lt;br /&gt;
|74LS374||1&lt;br /&gt;
|-&lt;br /&gt;
|74LS32||2&lt;br /&gt;
|-&lt;br /&gt;
|74LS02||1&lt;br /&gt;
|-&lt;br /&gt;
|74LS20||1&lt;br /&gt;
|-&lt;br /&gt;
|100µf 16V Electrolytic Capacitor||1&lt;br /&gt;
|-&lt;br /&gt;
|100nf Ceramic Capacitor||6&lt;br /&gt;
|-&lt;br /&gt;
|1K 1/4W Resistor||3&lt;br /&gt;
|-&lt;br /&gt;
|220ohm 1/4W Resistor||1&lt;br /&gt;
|-&lt;br /&gt;
|1N4148 Diode||3&lt;br /&gt;
|-&lt;br /&gt;
|3mm LED (red)||1&lt;br /&gt;
|-&lt;br /&gt;
|32 Pole PLCC IC Socket||1&lt;br /&gt;
|-&lt;br /&gt;
|50 (2x25) way Header RM 2.54||1&lt;br /&gt;
|-&lt;br /&gt;
|3 way header RM 2.54 (for jumpers)||2&lt;br /&gt;
|-&lt;br /&gt;
|Jumper Bridge||2&lt;br /&gt;
|-&lt;br /&gt;
|DPDT Slider switch RM 2.54||1&lt;br /&gt;
|-&lt;br /&gt;
|50 way Centronics plug||1&lt;br /&gt;
|-&lt;br /&gt;
|50 way flat cable||1&lt;br /&gt;
|-&lt;br /&gt;
|50 flat cable connector||1&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: In the picture above and also in the parts list, I have chosen to use a header connector on the PCB. I did this because I intend using the MegaFlash on both a UK CPC464 and a German CPC6128 and by using a header connector I can swap the connection cable to suit which CPC I'm connecting to. You may choose a direct connection to the PCB if you don't need this feature, dropping the price another few cents.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:MegaROM_Cables.png|400px|centre]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Construction Tips ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As the PCB design is double-sided there are no bridges this time. The components may be added in the order you prefer.&lt;br /&gt;
&lt;br /&gt;
The polarity of C7 and diodes D1 to D3 is critical, the other capacitors and resistors R1 to R4 may be soldered in either direction. The orientation for the ICs can be found in the part position layout file below (Coming Soon).&lt;br /&gt;
&lt;br /&gt;
Closing an IDC connector on a 50way flat cable can be a difficult task and if not done properly, may cost you a connector or two. I recommend first putting the cable in position and pushing it slightly closed to keep the cable in place, then place the connector in a bench vice with rubber between the metal of the vice and the connector, then slowly closing the vice on the connector until it reaches it's home position. You may have to re-position the connector a few times until it's completely closed. Bad connections with these connectors are the cause of many peripherals not working, the pins in the centre cause the most issues, so turn the connector 90° in the vice for a final squeeze to make sure these pins are properly connected. Don't try closing an IDC connector with a hammer, pliers or other tool that only applies pressure to a tiny area of the connector, it will break!&lt;br /&gt;
&lt;br /&gt;
== Using The MegaFlash ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It is possible to populate the Flash Memory with a good EPROM Burner. If you choose to do this, the ROMs should be saved to the following addresses. The Memory allocation file is also available below in PDF Format. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:MegaFlash_Memory_Map.PNG|400px|centre]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
However, using [[TFM]]s [[MegaFlashROManager]] Software, you can populate the MegaFlash directly from the CPC. All instructions on how to use the ROManager software can be found [[MegaFlashROManager|here]]. &lt;br /&gt;
&lt;br /&gt;
When using the ROManager software to write ROMs to the MegaFlash and other functions such as Delete / Park, you will be requested to switch to Write-mode. Only switch to write mode when requested to do so. Leaving the write mode switched on, or restarting the CPC while write-mode is enabled can cause the saved ROM images to be corrupted. The red LED is lit when in write-mode.&lt;br /&gt;
&lt;br /&gt;
The CPC464 and 664 only initialises ROMs 7 to 0 at start up and all other CPCs initialise ROMs 15 to 0. The additional ROM positions can be either initialised by installing the Booster ROM in position 15 or by manually initialising them. Because ROMs 16 to 31 are largely ignored by the computer, this area of memory does not have to adhere to the normal ROM header rules and can also be used to store generic data such as graphics or music data.&lt;br /&gt;
&lt;br /&gt;
== Jumper Settings ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the PCB there are two jumpers, which need to be set. Jumper 1 enables or disables ROM 0 on the MegaFlash to allow users to replace the internal ROM on the CPC. Jumper 2 enables or disables ROM 7 on the MegaFlash to choose between the CPCs internal OS ROM or an alternative OS on the MegaFlash. The jumpers need to be set to the correct position otherwise the CPC may not boot. Using the ROManager software it is also possible to enable or disable any of the other 30 virtual ROMs as required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:MF_Jumpers.png|600px|centre]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Compatibility ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The MegaFlash is compatible with all CPC464, CPC664, CPC6128, 464+, 6128+ and KCcompact and can be used to host standard ROM images such as [[AMSDOS]], [[BCPL]], [[FutureOS]], [[MAXAM]], [[Protext]], [[Utopia]], [[VDOS]], [[XD-DOS]].&lt;br /&gt;
&lt;br /&gt;
CPC Specific Limitations:&lt;br /&gt;
&lt;br /&gt;
* CPC464/664 - The 464 and 664 only scan and initialise ROMs 7 to 0 at start-up. ROMs 15 to 8 are only accessable if manually initialised.&lt;br /&gt;
* CPC6128 - Classic CPC6128 can not overwrite the internal ROM 7 with an external device, to make use of the external ROM 7 the CPC must be modified to allow the internal ROM 7 to be disabled (eg: By adding a switch to the internal ROMs Chip Enable pin)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The MegaFlash fully decodes the Address and Data buses, so it should not clash with any other official expansions installed in parallel or plus cartridges. However, adding two ROMBoards to a CPC in Parallel will cause crashes in some circumstances.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
[[Image:MegaFTracks.png|250px|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MegaFlash_Layout.zip]]  - PCB Track Layout (Cadsoft Eagle brd format)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MegaFlash_Memory_Map.pdf]]  - EPROM Memory Allocations Chart&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A full list of available ROMs can be found [[ROM|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
CPC crashes at startup? &lt;br /&gt;
&lt;br /&gt;
Solution 1:&lt;br /&gt;
&lt;br /&gt;
In the unlikely event that you program a ROM (in positions 0-15) with a bad image / experimental program / a picture of your cat, then there's a chance that the CPC will crash when trying to initialise the ROMs. And you can't erase the rubbish without a running CPC. For ROMs 0/7 this isn't a problem, because you can manually disable them with the jumpers, but not with the other positions.&lt;br /&gt;
&lt;br /&gt;
Here's the solution to get out of this catch 22:&lt;br /&gt;
&lt;br /&gt;
First disconnect the MegaFlash from the CPC and carefully remove the Flash from its socket. The socket has two slits on opposite corners of the IC, using a very small screw-driver you can slowly ease the IC out of the socket.&lt;br /&gt;
&lt;br /&gt;
Now plug the Flash-less MegaFlash into the CPC and start as normal (make sure both ROMs 0 and 7 are disabled on the MegaFlash). The CPC will start as normal and you can now replace the Flash in its socket (do this at the Basic prompt, don't start any programs beforehand). It only fits in one direction, due to one corner of the IC being tapered.&lt;br /&gt;
&lt;br /&gt;
You can now start the ROManager software and erase the offending image.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Solution 2:&lt;br /&gt;
&lt;br /&gt;
First you need to add a push button: One side of the button goes to GND. The negative pin of the 100µf capacitor is probably the safest location to solder the wire to GND. The negative pin is the one nearest the Flash socket.&lt;br /&gt;
The other side of the button should go to the centre pin of the ROM7 jumper.&lt;br /&gt;
&lt;br /&gt;
If you want to start the CPC with no MegaFlash ROMs enabled, just remove the ROM 7 jumper completely and hold the button pressed while you are switching the CPC on, then replace the ROM 7 jumper as soon as you get the Ready Prompt. DON'T press this button while the Jumper is still in place! In fact to make it safer, you could use a two pin jumper-header instead of a button. Then you just move the Jumper from the normal ROM 7 jumper-pins to your new pins and move it back when ready has appeared.&lt;br /&gt;
&lt;br /&gt;
It's not a really great solution, but it's safe for your CPC, your MegaFlash and the PLCC socket will get to live a lot longer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Solution 3:&lt;br /&gt;
&lt;br /&gt;
Activate the Autostart option of RSX |RMA of the [[MegaFlashROManager]] ROM version (located at ROM position 15) using [[SOFTBRENNER]]. Reset your CPC, the FlashROManager will start immediately. This way can be a bit tricky.&lt;br /&gt;
&lt;br /&gt;
== Rom Pack Download ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also,'''Cholo''' has created [[Media:RomPack By Cholo.zip | this ROM pack]] to get you started. The contents are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[AMRAM2|Amram 2]] - Sideways RAM toolkit ROM (19xx)([[Silicon_Systems|Silicon Systems]])(AMRAM2.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Amsdos 720K (19xx)(-)(720KAMSD.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Fleet_EPROM_Programmer|Amstrad Eprom Programmer]] (19xx)(Fleet Microsystems Ltd &amp;amp; F.Kup)(FLTEPRM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Amstrad Toolkit v1.4 (1986)([[Beebugsoft|Bee Bug Soft]])(TOOLKIT.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[BOS|Bos v2.1]] (1987)([[Vortex_Computersysteme|Vortex Gmbh]])(BOS21.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Spectre_Comms_Serial_Interface|Cage Comms v1.1]] (19xx)([[Aspects_BBS|D. Gorski and I. Hoare]])(CAGE11.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Panda_Electronics_Communications_Interface_Unit|Communication Interface Unit Driver Softare 1.5]] (1986)(Panda Electronics Ltd)(PIADR.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Amstrad_Serial_Interface|Comstar v1.25]] #1 (1986)([[HoneySoft|Honeysoft]] - [[PACE|Pace]])(COMSTAR1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Amstrad_Serial_Interface|Comstar v1.25]] #2 (1986)([[HoneySoft|Honeysoft]] - [[PACE|Pace]])(COMSTAR2.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Copy Lock v6.0 (1988)([[Romantic_Robot|Romantic Robot]])(COPYl60.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Copymate + v3.2 (1990)(Marco Vieth)(De)(COPYM32.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 464 Basic]] (1985)([[Amstrad|Amstrad]])(BASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 464 Modified OS]] (19xx)(-)(Da)(CPC464DK.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 464 OS]] (1985)([[Amstrad|Amstrad]])(OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 464+ and 6128+ Basic]] (1991)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(BASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 464+ and 6128+ OS]] (1991)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* CPC 464+ Plus A2 (1991)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(ROMPLUSADOS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[AMSDOS|CPC 664 Amsdos]] (1985)([[Amstrad|Amstrad]])(AMSDOS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 664 Basic]] (1985)([[Amstrad|Amstrad]])(BASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|Cpc 664 OS]] (1985)([[Amstrad|Amstrad]])(OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 6128 Basic]] (1985)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(Fr)(FBASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 6128 Basic]] (1985)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(Sp)(BASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locomotive_BASIC|CPC 6128 Basic]] (1986)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(BASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 6128 OS]] (1985)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(Fr)(F6128OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 6128 OS]] (1985)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Firmware|CPC 6128 OS]] (1985)([[Amstrad|Amstrad]] - [[Locomotive_Software|Locomotive]])(Sp)(S6128OS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* CPM Accessory Rom 1 (1988)(Graduate Software)(CPMACC1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[CP/M|CPM+]] #1 (1988)(Graduate Software - [[Digital_Research|Digital Research]] - [[Amstrad|Amstrad]])(CPM1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[CP/M|CPM+]] #2 (1988)(Graduate Software - [[Digital_Research|Digital Research]] - [[Amstrad|Amstrad]])(CPM2.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Disc Demon v1.1 (1986)([[Beebugsoft|Bee Bug Soft]])(DDEMON.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Disc Power (19xx)(-)(DISCPWR.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Discology|Discology Disccopier]] (1987)(Meridien Software)(DISCOLOG.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Discology|Discology Filecopier]] (19xx)(-)(Fr)(DISCFILE.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Discology|Discology v6.0]] (19xx)(Meridien Software)(DOLOGY6.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Dk'tronics_Speech_Synthesizer|Dk'Tronics Speech Rom v1.1]] (19xx)([[Dk'tronics|Dk'Tronics]])(DKSPEECH.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Dos Copy v1.3 and Crime v1.3 (1991)(-)(DOSCRIME.ROM)[ROM v2.1].zip&lt;br /&gt;
&lt;br /&gt;
* Dragon Breed Rom 1 (19xx)(Dragon Breed)(DBREED1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[John_Morrison|Extended Basic v1.1]] (1986)([[John_Morrison|John Morrison]])(EXBASIC.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Hackit|Hack It-Le Hackeur]] (19xx)([[Siren_Software|Siren Software]])(En-Fre)(HACKEUR.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[JL_Utilities|JL Utilities v1.2]] (19xx)([[JLCS|J0rn Lorentzen-JLCS]])(JLUTIL12.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[JL_Utilities|JL Utilities v2.1]] (19xx)([[JLCS|J0rn Lorentzen-JLCS]])(JLUTIL21.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[John_Morrison|Jm Eprom Programmer]] (1985)([[John_Morrison|John Morrison]])(JMPEPRM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Maxidos|Jm Maxidos v1.2]] (19xx)([[Nemesis|Nemesis]])(MAXIDOS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[KDS_Electronics_Serial_Interface|K.D.S Serial Interface &amp;amp; Comms Pack 5 v4.2B]] (19xx)([[KDS|K.D.S. Electronics]])(KSERIAL.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Kns Rom 6128 v1.01 (1989)(MFW)(KNSROM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Locksmith|Lock Smith]] (1985)([[Beebugsoft|Bee Bug Soft]])(LOCKS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Masterfile_III|Master File 128 v2.2]] (19xx)([[Campbell_Systems|Campbell Systems]] and [[Goldmark_Systems|GoldMark]])(MFILE128.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Masterfile_464|Master File 464 v1.1]] (1984)([[Campbell_Systems|Campbell Systems]] and [[Amsoft|Amsoft]])(MFILE464.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Micro-Music_Creator|Micro Music Creator]] #1 (1988)(First Byte)(MMC1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Micro-Music_Creator|Micro Music Creator]] #2 (1988)(First Byte)(MMC2.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Micro Style Rom v2.11 (1989)(Micro Style - PotPlant Systems)(STYLE.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Multiface|Multiface 2]] (19xx)([[Romantic_Robot|Romantic Robot]])(MULTFACE.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Nigdos 2.24 (1988)(-)(NIGDOS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Nirvana|Nirvana 1.1]] (1990)( [[Goldmark_Systems|GoldMark Systems]])(NIRVANA.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[NWC_Utilities|Nwc Utilities 1.1]] (19xx)([[NWC|Nwc]])(NWCUTIL.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Oddjob|Odd Job 2.2]] (1985)[[Pride_Utilities|Pride Utilities]] - [[Goldmark_Systems|GoldMark]])(ODDJOB22.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[CPC_Procopy|Pro Skey - Procopy v1.2 and Speed Key]] (1990)([[Nemesis|Nemesis]])(PROSKEY.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Programmer's Toolbox 1.0a (19xx)(-)(TOOLBOX.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Programmers Tool Box v1.2a (19xx)(-)(PT12A.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[RODOS|Rodos v2.11]] (19xx)(Romantic Robot)(RODOS211.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[RODOS|Rodos v2.15]] (19xx)(Romantic Robot)(RODOS215.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[ROMDOS|Rom Dos]] (1988)([[KDS|Kds Electronics]])(ROMDOS.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[ROMDOS|Rom Dos XL]] (1992)([[Siren_Software|Siren Software Ltd]] - [[KDS|Kds Electronics]])(ROMDOSXL.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[ROMDOS|Rom Dos XL v4.88]] (1993)([[Siren_Software|Siren Software Ltd]])(RDOSXL48.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Superpower_Mailing_List_(Micro_Power_Ltd.)|Super Power Mailing List]] (1985)([[Micro_Power_Ltd.|Micro Power Ltd]])(MAIL.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Super Rom v1.0 (1991)(Vorax)(SUPER.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Super Romplus - Auto Rom Control System 1.6 (1986)([[Britannia_Software_Ltd|Britannia Software Ltd]])(ARCS16.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[System_X|System-X v2.1]] (1985)([[Pride_Utilities|Pride Utilities]])(SYSX21.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* T3m Rom (19xx)(-)(T3MROM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[Transmat|Transmat v2.1]] (1985)([[Pride_Utilities|Pride Utilities]])(TMAT21.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* UNCR v2.4 - Cruncher Accessory ROM for CPM (1988)(Graduate Software)(CPMCRCH.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Utility Suite (19xx)(-)(ROB3ROM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Vorax's CPM Plus Rom #1 (19xx)(Graduate - Vorax)(CPM1.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* Vortex Ram - Expansion Card ID (19xx)([[Vortex_Computersysteme|Vortex]])(De)(VRAMID.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[X-DDOS|X-Ddos]] (1987)(-)(XDDOS111.ROM).zip&lt;br /&gt;
&lt;br /&gt;
* [[X-ROM|XROM Eprommer v1.16]] (1986)([[Timatic_Systems|Timatic Systems]])(XROM.ROM).zip&lt;br /&gt;
&lt;br /&gt;
[[Category:DIY]] [[Category:Expansion ROM]] [[Category:FutureOS]] [[Category:Memory expansions]] [[Category:Peripherals]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:PNG.png&amp;diff=86342</id>
		<title>File:PNG.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:PNG.png&amp;diff=86342"/>
				<updated>2013-02-07T21:06:43Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69699</id>
		<title>XzentriX Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69699"/>
				<updated>2011-09-15T16:11:41Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Expected Participiants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2010''' took place from 9.-11. September 2011 in Seeshaupt, Germany, and was - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it was a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there was again a very high amount of CPC scene members.&lt;br /&gt;
&lt;br /&gt;
== Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster]]&lt;br /&gt;
*[[The Cranium|Cranium]]&lt;br /&gt;
*[[Ferdl]]&lt;br /&gt;
*[[Kangaroo MusiQue]]&lt;br /&gt;
*[[MaV]]&lt;br /&gt;
*[[Mr.Ams|Mr.Ams]]&lt;br /&gt;
*[[Nilquader]]&lt;br /&gt;
*[[Nurgle]] &lt;br /&gt;
*[[Octoate]]&lt;br /&gt;
*[[Odiesoft]]&lt;br /&gt;
*[[Sync]]&lt;br /&gt;
*[[Tolkin]]&lt;br /&gt;
*[[Villain]]&lt;br /&gt;
*[[Woodman]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
== Blog Entries ==&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69698</id>
		<title>XzentriX Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69698"/>
				<updated>2011-09-15T16:11:28Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Expected Participiants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2010''' took place from 9.-11. September 2011 in Seeshaupt, Germany, and was - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it was a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there was again a very high amount of CPC scene members.&lt;br /&gt;
&lt;br /&gt;
== Expected Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster]]&lt;br /&gt;
*[[The Cranium|Cranium]]&lt;br /&gt;
*[[Ferdl]]&lt;br /&gt;
*[[Kangaroo MusiQue]]&lt;br /&gt;
*[[MaV]]&lt;br /&gt;
*[[Mr.Ams|Mr.Ams]]&lt;br /&gt;
*[[Nilquader]]&lt;br /&gt;
*[[Nurgle]] &lt;br /&gt;
*[[Octoate]]&lt;br /&gt;
*[[Odiesoft]]&lt;br /&gt;
*[[Sync]]&lt;br /&gt;
*[[Tolkin]]&lt;br /&gt;
*[[Villain]]&lt;br /&gt;
*[[Woodman]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
== Blog Entries ==&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69616</id>
		<title>XzentriX Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69616"/>
				<updated>2011-09-11T16:07:59Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2010''' took place from 9.-11. September 2011 in Seeshaupt, Germany, and was - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it was a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there was again a very high amount of CPC scene members.&lt;br /&gt;
&lt;br /&gt;
== Expected Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster]]&lt;br /&gt;
*[[The Cranium|Cranium]]&lt;br /&gt;
*[[Kangaroo MusiQue]]&lt;br /&gt;
*[[MaV]]&lt;br /&gt;
*[[Mr.Ams|Mr.Ams]]&lt;br /&gt;
*[[Nilquader]]&lt;br /&gt;
*[[Nurgle]] &lt;br /&gt;
*[[Octoate]]&lt;br /&gt;
*[[Odiesoft]]&lt;br /&gt;
*[[Prodatron]]&lt;br /&gt;
*[[Sync]]&lt;br /&gt;
*[[Tolkin]]&lt;br /&gt;
*[[Villain]]&lt;br /&gt;
*[[Woodman]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
== Blog Entries ==&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69615</id>
		<title>XzentriX Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2011&amp;diff=69615"/>
				<updated>2011-09-11T16:07:31Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Participants corrected&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2010''' took place from 9.-11. September 2011 in Seeshaupt, Germany, and was - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it was a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there was again a very high amount of CPC scene members.&lt;br /&gt;
&lt;br /&gt;
== Expected Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster]]&lt;br /&gt;
*[[The Cranium|Cranium]]&lt;br /&gt;
*[[Kangaroo MusiQue]]&lt;br /&gt;
*[[MaV]]&lt;br /&gt;
*[[Mr.Ams|Mr.Ams]]&lt;br /&gt;
*[[Nilquader]]&lt;br /&gt;
*[[Nurgle]] &lt;br /&gt;
*[[Octoate]]&lt;br /&gt;
*[[Odiesoft]]&lt;br /&gt;
*[[Odin]]&lt;br /&gt;
*[[Prodatron]]&lt;br /&gt;
*[[Sync]]&lt;br /&gt;
*[[Villain]]&lt;br /&gt;
*[[Woodman]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
== Blog Entries ==&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Mr._Ams&amp;diff=66732</id>
		<title>Mr. Ams</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Mr._Ams&amp;diff=66732"/>
				<updated>2011-02-15T17:51:25Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Undo revision 66729 by Ludwig63 (talk) Bitte unterlasse es hier im Wiki Fragen zu stellen. Dafür ist das Forum da...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Mrams.jpg|thumb|Mr.Ams in 2001]]&lt;br /&gt;
&lt;br /&gt;
'''Mr. Ams''' (Stephan Sommer) from Murnau, Germany was the editor of the [[Rundschlag]] Nr. 20 and organises the [[XzentriX]] Parties&lt;br /&gt;
&lt;br /&gt;
== Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[SCUG]]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC scene members]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:Tom_et_Jerry&amp;diff=47199</id>
		<title>Talk:Tom et Jerry</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:Tom_et_Jerry&amp;diff=47199"/>
				<updated>2010-06-29T06:21:15Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Created page with 'Imho something is mixed together: the german Tom &amp;amp; Jerry with the french guy Tom et Jerry. Right?'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Imho something is mixed together: the german Tom &amp;amp; Jerry with the french guy Tom et Jerry. Right?&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2010&amp;diff=47016</id>
		<title>XzentriX Meeting 2010</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2010&amp;diff=47016"/>
				<updated>2010-06-14T20:47:39Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Participiants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2010''' takes place from 3.-5. September 2010 in Seeshaupt, Germany, and is - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it is a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there will be again a very high amount of CPC scene members. &lt;br /&gt;
&lt;br /&gt;
== Expected Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Mr.Ams|Mr.Ams]]&lt;br /&gt;
*[[Nurgle]] &lt;br /&gt;
*[[Octoate]]&lt;br /&gt;
*[[Villain]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
== Blog Entries ==&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Villain&amp;diff=32305</id>
		<title>Villain</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Villain&amp;diff=32305"/>
				<updated>2009-09-30T14:02:54Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: If I delete my real name it has to stay deleted!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Villain-90s.jpg|thumb|VIllain in the early 90s]]&lt;br /&gt;
'''Villain''' is a member of [[HJT]] and [[Benediction]]. He got his CPC in 1987 and joined the scene in the early 90s. Since he spent the most time with swapping software all around the world he never learnt coding besides a few lines of [[BASIC]] but wrote articles for different fanzines. &lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
* [[CPC forever]] Paperzine&lt;br /&gt;
* [[Digital Press]] Disczine&lt;br /&gt;
* [[GODT Soundcollection]] Musiccollection&lt;br /&gt;
* [[Silvester Demo]] (Gfx, Sound) Demo&lt;br /&gt;
* [[Slime 1.4]]&lt;br /&gt;
* [[Watch the Gamez!]] (Gfx) Slideshow&lt;br /&gt;
&lt;br /&gt;
== Groups ==&lt;br /&gt;
* [[Benediction]] (1995? -)&lt;br /&gt;
* [[Die Drei Lenoere]] (since 2005)&lt;br /&gt;
* [[GODT]] (1992?)&lt;br /&gt;
* [[HJT]] (1993? -)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC scene members]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Frankenteam&amp;diff=32304</id>
		<title>Frankenteam</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Frankenteam&amp;diff=32304"/>
				<updated>2009-09-30T13:57:10Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Es interessiert keinen Schwanz ob er dort einen Tag oder 15 Jahre war. Er war Mitglied und damit bums.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Frankenteam Members ==&lt;br /&gt;
&lt;br /&gt;
* [[ACB]]&lt;br /&gt;
* [[Brainblaster]]&lt;br /&gt;
* [[Gert Genial]]&lt;br /&gt;
* [[Kangaroo MusiQue]]&lt;br /&gt;
* [[Schlumpf]]&lt;br /&gt;
&lt;br /&gt;
== Frankenteam Productions ==&lt;br /&gt;
&lt;br /&gt;
* [[CPC-Telegramm]] [http://www.cpc-telegramm.de]&lt;br /&gt;
&lt;br /&gt;
[[Category:Scene group]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Demogroups&amp;diff=31744</id>
		<title>Demogroups</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Demogroups&amp;diff=31744"/>
				<updated>2009-08-01T22:56:10Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Germany */ Aeh, seit wann sind Tolkin, Kangaroo und TFM denn Gruppen?! :-)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''For an overview of the CPC scene members, you can have a look at the'' &lt;br /&gt;
&lt;br /&gt;
*[[CPC scene members|List of CPC scene members]] &lt;br /&gt;
*[http://www.cpcwiki.eu/index.php/Category:CPC_scene_members Category of CPC scene members]&lt;br /&gt;
&lt;br /&gt;
''You can also check the [http://www.cpcwiki.eu/index.php/Category:Demos Demos category] for productions/releases.'' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;This is a list of the CPC scene '''demo groups''', which have been or are still active. &lt;br /&gt;
&lt;br /&gt;
== France  ==&lt;br /&gt;
&lt;br /&gt;
*[[5KB|5KB]] &lt;br /&gt;
*[[Arkos|Arkos]] ([http://www.arkos.cpcscene.com Arkos homepage]) &lt;br /&gt;
*[[AST System|AST System]] &lt;br /&gt;
*[[BCAV|BCAV]] &lt;br /&gt;
*[[Contrast|Contrast]] &lt;br /&gt;
*[[Da Boxon Team|Da Boxon Team]] &lt;br /&gt;
*[[Fefesse|Fefesse]] &lt;br /&gt;
*[[Futur's|Futur's]] ([http://www.futurs.cpcscene.com Futur's homepage]) &lt;br /&gt;
*[[GPA|GPA]] ([http://tj.gpa.free.fr Tom et Jerry's homepage]) &lt;br /&gt;
*[[Hard'OS|Hard'OS]] ([http://bdciron.cpcscene.com BDC Iron's homepage]) &lt;br /&gt;
*[[Impact CPC|Impact CPC]] ([http://impact.cpcscene.com Impact's forum]) &lt;br /&gt;
*[[Kill or die|Kill or die]] &lt;br /&gt;
*[[Krad'os Crack'ers|Krad'os Crack'ers]] &lt;br /&gt;
*[[Logon System|Logon System]] ([http://logon.system.free.fr Logon System's website]) &lt;br /&gt;
*[[Malibu Crackers|Malibu Crackers]] &lt;br /&gt;
*[[Mortel|Mortel]] &lt;br /&gt;
*[[NPS|NPS]] (for Nul Part System) ([http://nulpartsystem.free.fr NPS homepage]) &lt;br /&gt;
*[[Overlanders|Overlanders]] &lt;br /&gt;
*[[Paradox|Paradox]] &lt;br /&gt;
*[[Rebels|Rebels]] &lt;br /&gt;
*[[Revival|Revival]] &lt;br /&gt;
*[[Les Sucres en Morceaux|Les Sucres en Morceaux]] ([http://scampin.chez-alice.fr/cpc Sucres en Morceaux homepage]) &lt;br /&gt;
*[[Static|Static]] &lt;br /&gt;
*[[The Addams Fanz|The Addams Fanz]] ([http://tafcpc.free.fr TAF homepage]) &lt;br /&gt;
*[[Ukonx|Ukonx]] ([http://ukonx.free.fr Ukonx homepage])&lt;br /&gt;
&lt;br /&gt;
== Germany  ==&lt;br /&gt;
&lt;br /&gt;
*[[ALC|ALC]]&lt;br /&gt;
*[[Armaxess|Armaxess]]&lt;br /&gt;
*[[BENG!|BENG!]] (also international)&lt;br /&gt;
*[[Benediction|Benediction]]&lt;br /&gt;
*[[Bollaware|Bollaware]]&lt;br /&gt;
*[[Cadjo Clan|Cadjo Clan]]&lt;br /&gt;
*[[CBS|CBS]]&lt;br /&gt;
*[[CGS|CGS]]&lt;br /&gt;
*[[Commotion|Commotion]]&lt;br /&gt;
*[[CRT|CRT]]&lt;br /&gt;
*[[Exodus|Exodus]]&lt;br /&gt;
*[[Frankenteam|Frankenteam]]&lt;br /&gt;
*[[FutureSoft|FutureSoft]]&lt;br /&gt;
*[[GCS|GCS]]&lt;br /&gt;
*[[GOS|GOS]]&lt;br /&gt;
*[[HJT|HJT]]&lt;br /&gt;
*[[Inicron|Inicron]]&lt;br /&gt;
*[[KKB|KKB]]&lt;br /&gt;
*[[Merlyn|Merlyn]]&lt;br /&gt;
*[[MOPS|MOPS]]&lt;br /&gt;
*[[Necron|Necron]]&lt;br /&gt;
*[[PDW|PDW]]&lt;br /&gt;
*[[POW|POW]]&lt;br /&gt;
*[[Power System|Power System]]&lt;br /&gt;
*[[The Rejects|The Rejects]]&lt;br /&gt;
*[[SCUG|SCUG]]&lt;br /&gt;
*[[SPRING|SPRING]]&lt;br /&gt;
*[[SymbiosiS|SymbiosiS]]&lt;br /&gt;
*[[TCT|TCT]]&lt;br /&gt;
*[[TGS|TGS]]&lt;br /&gt;
*[[Wizcat|Wizcat]]&lt;br /&gt;
&lt;br /&gt;
== Greece  ==&lt;br /&gt;
&lt;br /&gt;
*[[Dirty Minds|Dirty Minds]] &lt;br /&gt;
*[[Chaos|Chaos]] [http://www.geocities.com/chaoscpc/ Chaos Homepage]&lt;br /&gt;
&lt;br /&gt;
== Ireland  ==&lt;br /&gt;
&lt;br /&gt;
*[[The Firm|The Firm]]&lt;br /&gt;
&lt;br /&gt;
== Netherlands  ==&lt;br /&gt;
&lt;br /&gt;
*[[Dragonbreed Wetware|Dragonbreed Wetware]]&lt;br /&gt;
&lt;br /&gt;
== Spain  ==&lt;br /&gt;
&lt;br /&gt;
*[[Zona Neutra|Zona Neutra]] ([http://www.zonan.org Zona Neutra website]) &lt;br /&gt;
*[[ESP Soft|ESP Soft]] ([http://www.amstrad.es/espsoft Esp Soft website])&lt;br /&gt;
&lt;br /&gt;
== Switzerland  ==&lt;br /&gt;
&lt;br /&gt;
*[[UNiX|UNiX]]&lt;br /&gt;
&lt;br /&gt;
== United Kingdom  ==&lt;br /&gt;
&lt;br /&gt;
*[[Bitmap Vandals|Bitmap Vandals]] &lt;br /&gt;
*[[Conspiracy|Conspiracy]] &lt;br /&gt;
*[[Discovery|Discovery]] &lt;br /&gt;
*[[Donut System|Donut System]] &lt;br /&gt;
*[[Lords of Justice|Lords of Justice]] &lt;br /&gt;
*[[STS|STS]] &lt;br /&gt;
*[[Systeme D|Systeme D]] &lt;br /&gt;
*[[The Underground|The Underground]] &lt;br /&gt;
*[[Wendos PDS/Wendos Interactive|Wendos PDS/Wendos Interactive]]&lt;br /&gt;
&lt;br /&gt;
and many, many more... &lt;br /&gt;
&lt;br /&gt;
[[Category:Scene_group]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPC_Reunion_2009&amp;diff=31009</id>
		<title>CPC Reunion 2009</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPC_Reunion_2009&amp;diff=31009"/>
				<updated>2009-06-04T22:08:22Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The CPC-Klassentreffen 2009 (CPC-Reunion 2009) will take place from the 29. May 2009 to 31.May 2009 in Erlangen, Germany. It will be one of the biggest CPC-Parties ever. And we will celebrate 25 years Amstrad CPC with a big big party! &lt;br /&gt;
&lt;br /&gt;
=== What's it all about&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
Not only did the CPC groups keep dissolving quicker and quicker since the beginning of the 90s, but the contacts between CPC users broke off more and more. Now 25 years have gone past since the CPC era, and it seems appropriate to meet again. &lt;br /&gt;
&lt;br /&gt;
We don't just mean a meeting of those CPC users who are still active, but we especially want to address the veterans who haven't done anything on the CPC for years, such as Groo, Weee, Thriller, BSC, DSC, K-OS, Crown, MTI, Section Jaguar, Marabu &amp;amp;amp; Co. etc.. &lt;br /&gt;
&lt;br /&gt;
Of course normal users of the CPC and those who still work with the little 8-bitter are also most welcome to come to the CPC Reunion 2009. &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Just why should I come?&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
Counterquestion: Why not? Most of us have met many nice people during our CPC times. Interesting, weird characters, cracking gurus and excellent coders. Scene celebrities and ambitious users... lots of different people - and you are one of them. &lt;br /&gt;
&lt;br /&gt;
We're sure there are some people from your CPC times you'd like to see again to have a chat, exchange memories or just discuss the meaning of life with over a small beer or a coke. And others may just want to see you again. So take a weekend off and come to us to Erlangen! You'll meet old and young CPCers during a cozy party. &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== What does Erlangen have to offer?&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
Well... the CPC meeting coincides with the Bergkirchweih, a kind of Fair. It's comparable to the Cannstatter Wasen in Stuttgart or the Oktoberfest in Munich - but of course smaller and a lot nicer and cozier! &lt;br /&gt;
&lt;br /&gt;
In the evening you'll be able to have a quiet sit-down and enjoy life and, possibly, one or three beers. During the day we'll chat and gossip. Those who want can watch CPC demos, have a spontaneous barbecue or keep an eye out for naked ladies in the swimming pool around the corner. &lt;br /&gt;
&lt;br /&gt;
There really is no fixed schedule... &amp;quot;Come, have fun and be spontaneous&amp;quot; is the motto - which used to work pretty well for all previous CPC parties&amp;amp;nbsp;:-) &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Is this going to cost anything?&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
Renting the place for the weekend and the food for barbecues, breakfast etc doesn't cost the world, but the greater part of the expenses that are going arise should really be covered by those attending the meeting. &lt;br /&gt;
&lt;br /&gt;
Therefore the amount of expenses depends on how many people will come. The more we are, the cheaper it will be to participate. From experience we can tell you that the total amount per person is going to be between 20 and 30 Euros. &lt;br /&gt;
&lt;br /&gt;
And just to make one thing clear: NO, there will be no student discounts on the entry fee or the beer&amp;amp;nbsp;:-) &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
More Informations in german about the CPC-Klassentreffen 2009 can be found at the Homepage:&amp;amp;nbsp;http://cpc.cmo.de. If you want to subscribe, just email to kangaroo - at - cpcszene - dot - de &lt;br /&gt;
&lt;br /&gt;
== Participants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Blackbird|Blackbird]] &lt;br /&gt;
*[[Brainblaster|Brainblaster]] &lt;br /&gt;
*[[BSC|BSC]] &lt;br /&gt;
*[[CPC-Mike|CPC-Mike]] &lt;br /&gt;
*[[Doc Bartoc|Doc Bartoc]] &lt;br /&gt;
*[[DJH|DJH]]&lt;br /&gt;
*[[Dr.Zed|Dr.Zed]] &lt;br /&gt;
*[[Elmsoft|Elmsoft]] &lt;br /&gt;
*[[Face Hugger|Face Hugger]] &lt;br /&gt;
*[[Gert Genial|Gert Genial]] &lt;br /&gt;
*[[Juggler|Juggler]] &lt;br /&gt;
*[[Kangaroo MusiQue|Kangaroo MusiQue]] &lt;br /&gt;
*[[Nilquader|Nilquader]] &lt;br /&gt;
*[[Nurgle|Nurgle]] &lt;br /&gt;
*[[Octoate|Octoate]] &lt;br /&gt;
*[[Odiesoft|Odiesoft]] &lt;br /&gt;
*[[Odin|Odin]] &lt;br /&gt;
*[[Steffen|Steffen]] &lt;br /&gt;
*[[Tolkin|Tolkin]] &lt;br /&gt;
*[[Villain|Villain]] &lt;br /&gt;
*[[Ythcal|Ythcal]]&lt;br /&gt;
&lt;br /&gt;
== Picture Galleries  ==&lt;br /&gt;
&lt;br /&gt;
*[http://blog.kangaroo.cmo.de/2009/06/01/cpc-klassentreffen-2k9-die-bilder/#more-6092 Pictures on Kangaroos homepage] &lt;br /&gt;
*[http://www.octoate.de/wp/nggallery/page-591/album-1/gallery-11 Pictures on Octoates homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Inicron_Party&amp;diff=31008</id>
		<title>Inicron Party</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Inicron_Party&amp;diff=31008"/>
				<updated>2009-06-04T22:05:16Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Participants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Alien|Alien]] &lt;br /&gt;
*[[Brainblaster|Brainblaster]] &lt;br /&gt;
*[[Doc Bartoc|Doc Bartoc]] &lt;br /&gt;
*[[Face Hugger|Face Hugger]] &lt;br /&gt;
*[[Fraggle|Fraggle]] &lt;br /&gt;
*[[G.o.St.-SOFT|G.o.St.-SOFT]] &lt;br /&gt;
*[[Gert Genial|Gert Genial]] &lt;br /&gt;
*[[Hage|Hage]] &lt;br /&gt;
*[[K-OS|K-OS]] &lt;br /&gt;
*[[Knutschfleck|Knutschfleck]] &lt;br /&gt;
*[[Mark McReady|Mark McReady]] &lt;br /&gt;
*[[Mr.Ams|Mr.Ams]] &lt;br /&gt;
*[[Siggi|Siggi]] &lt;br /&gt;
*[[TFM|TFM]] &lt;br /&gt;
*[[The Cranium|The Cranium]] &lt;br /&gt;
*[[Villain|Villain]]&lt;br /&gt;
*[[WSX|WSX]] &lt;br /&gt;
*[[Ythcal|Ythcal]] &lt;br /&gt;
*[[ZAQ|ZAQ]]&lt;br /&gt;
&lt;br /&gt;
== Picture Galleries ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.odiesoft.de/galleries/inicron/index.html Pictures at Odiesofts Homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Die_Drei_Len%3F%3F%C2%3Fre&amp;diff=29507</id>
		<title></title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Die_Drei_Len%3F%3F%C2%3Fre&amp;diff=29507"/>
				<updated>2009-02-13T16:38:16Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Lenoere-logo.jpg|thumb|Die Drei Lenöre-Logo]] '''Die Drei Lenöre''' is a - in our opinion - funny music-project, where four members of the CPC scene are involved in: &lt;br /&gt;
&lt;br /&gt;
*[[Kangaroo MusiQue|Kangaroo MusiQue]] (As the maniac music maker (MMM)) &lt;br /&gt;
*[[Octoate|Octoate]] (for singing, dancing and writing lyrics) &lt;br /&gt;
*[[Villain|Villain]] (for singing, writing lyrics and making videos) &lt;br /&gt;
*[[Prodatron|Prodatron]] (for being the only '''real''' fan&amp;amp;nbsp;:)&lt;br /&gt;
&lt;br /&gt;
Almost everything is in german, so it may be hard to read (and to listen). The first releases contained a lot of CPC-related material, what really changed over the last years. The lyrics now deal with very different topics. &lt;br /&gt;
&lt;br /&gt;
The latest album is called [http://blog.lenoere.de/?page_id=204 Tutti Frutti] and can be - as always - downloaded for free. &lt;br /&gt;
&lt;br /&gt;
== Weblinks  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.lenoere.de Blog and website of Die Drei Lenöre]&lt;br /&gt;
&lt;br /&gt;
[[Category:Music_and_sound]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=28423</id>
		<title>Talk:FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=28423"/>
				<updated>2008-12-22T19:46:15Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Questions...  ==&lt;br /&gt;
&lt;br /&gt;
Hmm.. are there any applications for Future OS? And can i really add any device and it will be recommended by the system without any device driver? Unbelievable!! and much better than SymbOS then, isn't it? (Forgott to sign.. sorry.. but as i don't fear anything... here i am... [[User:Kangaroo|Kangaroo MusiQue of HJT]] 07:59, 28 August 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
:First you can't compare SymbOS and FutureOS so easy.&amp;amp;nbsp;Software for FutureOS is availabe in the Yahoo-Group, where you can download it. Or just look at the FutureOS article, go there to applications.&lt;br /&gt;
:And yes, I try to support nearly all hardware for the CPC. See article, see compatibility list. Ok,&amp;amp;nbsp;very few&amp;amp;nbsp;is still missing, but this will change soon I hope. &lt;br /&gt;
:About features: Ok, I have finished the new documentation in english and german, you can download it at wwww.futureos.de&lt;br /&gt;
&lt;br /&gt;
:&amp;amp;nbsp;I have no time to explain the 126th time where some&amp;amp;nbsp;OS function is. read the manual, the new version is out some time. &lt;br /&gt;
:Greets to all honest CPC sceners, &lt;br /&gt;
:TFM &lt;br /&gt;
::Please try to keep your tone down. I'm letting this here as an example of what NOT to say. RTFM is NOT part of the language that will be tolerated here, if we want to keep a flame war out of our wiki; so please keep this in mind. And please don't jump to conclusions - several users still do not know about signing their entries! It seems to me the original poster was more positive than negative, so you could try and calmly answer to his questions, otherwise there's no reason in replying at all. This is NOT a debate room, and fights will NOT ('''NOT!''') be welcome here. You do not need to be apologetic (as you are in a couple of points) about anything that FutureOS may be lacking, since it's a wonderful system anyhow, but also taking it to the other extreme doesn't exactly help things either.&lt;br /&gt;
::Best regards, &lt;br /&gt;
::[[User:Gryzor|Gryzor]] 16:02, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::RTFM means Read The Futureos Manual, so where is the problem? That guy (without name) is allowed to vandalish my text? Why don't you stop him?&lt;br /&gt;
&lt;br /&gt;
:::Anyhow, and why don't talk about something other very unfair. At the left side, below &amp;quot;the present&amp;quot; there is a line for SymbOS, why not FutueOS. I would like to please you to insert that line.&lt;br /&gt;
&lt;br /&gt;
:::Greets &lt;br /&gt;
:::TFM&lt;br /&gt;
&lt;br /&gt;
::::Can we please stop hiding behind our finger? We all know what RTFM means, so please drop it. I assume almost everyone here is of at least average IQ... As I said, this languages is NOT permitted on board. What's more, what do you mean about that guy being allowed to vandalise your text? What did he vandalise? What should I stop? I think there might be a big misunderstanding here... Anyhow, about the SIdebar, I don't think it's 'very unfair', as I've explained before. FutureOS may be indeed very, very nice a project and I find myself playing with it the whole time, but SymbOS, with the existing Symbiface, has long ago reached critical mass and is very impressive and popular, that's why it had its own link. This is NOT an issue of 'put my project up there along with the others', it's trying to organise things in a better way. In any case, the Sidebar was changed a lot, I'm going to look into it... [[User:Gryzor|Gryzor]] 08:16, 11 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:That's something, which came to my mind very often! We should change the &amp;quot;SymbOS&amp;quot; link in the left menu to &amp;quot;Operating Systems&amp;quot;. Then we can have a list of OSs for the CPC there. It would be a better entry point! --[[User:Octoate|Octoate]] 20:40, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Hm, I don't know. In this case you have to place all categories from the &amp;quot;serious software&amp;quot; articel in the sidebar. -- [[User:Prodatron|Prodatron]] 21:00, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Argh...&amp;amp;nbsp;;) --[[User:Octoate|Octoate]] 21:24, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
== What's about respecting some rules?  ==&lt;br /&gt;
&lt;br /&gt;
As this is not Wikipedia but our own scene CPCWiki, I wouldn't like to force the articles to follow strict rules, but at least the following two rules should be respected by everyone: &lt;br /&gt;
&lt;br /&gt;
*no advertisment-like phrases &lt;br /&gt;
*no false information&lt;br /&gt;
&lt;br /&gt;
The following parts in this article should be removed and replaced in a section like &amp;quot;possible plans for the future&amp;quot;: &lt;br /&gt;
&lt;br /&gt;
*IDE support (mentioned several times, and first I mixed v8 with v9, but as it should only be a possible part of v9 [and now even v8 isn't released], it will not be implemented before 2007 or later, right?) &lt;br /&gt;
*CPC Booster support (you can't call an entry in the port monitor &amp;quot;support&amp;quot;) &lt;br /&gt;
*Multi tasking (I couldn't find any references)&lt;br /&gt;
&lt;br /&gt;
If I am wrong, and these features are already implemented in FutureOS and ready for download, please provide us a link. &lt;br /&gt;
&lt;br /&gt;
Some other parts should also be removed: &lt;br /&gt;
&lt;br /&gt;
*One-drive restriction of other OSs (nearly every OS can do this, even Amsdos allows drive letters in a path) &lt;br /&gt;
*Advertisment-like phrases (e.g. &amp;quot;FutureOS is for programmers who want to use the CPC at its limits&amp;quot; and other ones; these should be better placed on a homepage but not in a Wiki)&lt;br /&gt;
&lt;br /&gt;
-- [[User:Prodatron|Prodatron]] 00:05, 9 August 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
:I sense a scene fight coming on, I'm afraid... I do not wish to take any part in it, especially since I do not know anything about the common history of projects, but I hope it stays off the wiki! &lt;br /&gt;
::Well, in general it is quite easy to follow some necessary rules, so I am not afraid about fights. -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I'll have to agree with some of Prodatron's remarks. The article needs heavy editing (I have altered several points myself, more is needed) so as to not appear as a commercial for FutureOS but more like an objective article. Also, at points it becomes more of a manual than an article on the OS itself.&lt;br /&gt;
&lt;br /&gt;
:That said, even in Symbiface there was the phrase: ''It provides nearly everything you need to change your CPC into a powerful work station!'' which is more of the same&amp;amp;nbsp;:) &lt;br /&gt;
::Yes, that's right. I think someone just copied &amp;amp;amp; pasted this from the homepage&amp;amp;nbsp;;) -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:To get back to Prodatron's remarks, if his points are valid the article should be corrected. If ''system .9'', as it is called in the article, indeed refers to FutureOS v9 then I also think that it should be re-written, especially since not even v8 has been released (really looking forward to it!).&lt;br /&gt;
&lt;br /&gt;
:In general, I would urge '''ALL''' contributors who are also developers, to try and keep their usual enthusiasm (read: ego&amp;amp;nbsp;;) ) at a low, since we are trying to do an objective work and not promote one or the other product... Thanks! [[User:Gryzor|Gryzor]] 09:47, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I have cleaned up the whole artice, removed advertisment-like phrases, re-wrote sentences that sounded too much like advertising and thigthened the language. Articles should contain no false or biased statements in any form. Keep it clear, true, neutral and objective. This is what I tried to accomplish when editing this article. - 2006-08-09; Gwildor - &lt;br /&gt;
&lt;br /&gt;
:Thanks for your effort Gwildor! The article looks a bit more polished now. --[[User:Octoate|Octoate]] 14:07, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I think the maximum file size currently is 512KB (19bit). I couldn't find any possibilities to load data from files, which are bigger than 512KB. Why is 16MB/24bit mentioned in the article? Also a planned feature for the future? -- [[User:Prodatron|Prodatron]] 17:02, 9 August 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
The maximum file-size depends on the free space on disc-hard-disc or it is limited by a 24 Bit file-length code. Just look at the manual. You can use routines like TEILA or TEISI to load or save files greater then 576 KB. TFM &lt;br /&gt;
&lt;br /&gt;
== Looks good now  ==&lt;br /&gt;
&lt;br /&gt;
Thanx to everybodys' effort the article looks a lot better now. I wouldn't call &amp;quot;CPC Booster support&amp;quot; like this, but who cares. What's about summarising some very small sections and maybe removing some user-manual-like sentences? -- [[User:Prodatron|Prodatron]] 17:44, 10 August 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
:Sumarised all sections which contained only 1 or 2 sentences and removed the FioLib text in its own article. -- [[User:Prodatron|Prodatron]] 19:16, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
Thank you for your excellent help. TFM &lt;br /&gt;
&lt;br /&gt;
== Protection  ==&lt;br /&gt;
&lt;br /&gt;
This part of the discussion has been deleted; please do not roll back. &lt;br /&gt;
&lt;br /&gt;
The reason I deleted it is because it turned into a flame, and also because some people do not understand how to format their edits by using semi-colons to keep the thread flow easy to understand. As a result it was a flame that was very hard to follow. I will just keep the following: &lt;br /&gt;
&lt;br /&gt;
The article will remain locked for the time being. It's really unfortunate that events are taking such a turn, at a time when the wiki is expanding at a good rate, which means that someone will have to keep an eye on all that is being written. Let's see if the discussion cools down a bit, then decide. &lt;br /&gt;
&lt;br /&gt;
That said, the initial article and subsequent edits were nothing less than shameless plugs for FutureOS. If you want to publish a plug, put it on your Profile page -- '''provided you create one''' and that you do not post anonymously! Why is it so darn hard to understand this??? [[User:Gryzor|Gryzor]] 19:42, 29 August 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
How to plug for something, which costs no money? &lt;br /&gt;
&lt;br /&gt;
::I can also get different religions for free, nevertheless I want that someone tells me in a fundamentalistic way why his religion is best. The fact that something is free doesn´t mean that the wiki rules don´t have to be respected.&lt;br /&gt;
&lt;br /&gt;
:::Right! So respect your own rules. Maybe the article wasn't ideal for wiki at first. But better an article that could be corrected than nothing to read. And the comparison about religion is very low under my level.&lt;br /&gt;
&lt;br /&gt;
== Flaming  ==&lt;br /&gt;
&lt;br /&gt;
Will it be possible, to stop flaming around that future os thing? I hate it to see people fighting for nothing&amp;amp;nbsp;:D So maybe it will be the best to protect the whole article and the talk-area to stop annoying and useless posts from both parties [[User:Kangaroo|Kangaroo MusiQue of HJT]] 14:06, 5 September 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
:Well, but who started the flaming?&amp;amp;nbsp;;-)) [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;oldid=2154], [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;diff=4395&amp;amp;oldid=4393] I think at least the talk page shouldn't be protected, otherwise I am afraid, that it will continue on the general discussion page. -- [[User:Prodatron|Prodatron]] 15:02, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;nbsp;:-) It was just my first reaction on the original-article as i read it. And that where logical questions, after reading an advertisement-text on the wiki for a &amp;quot;ultimate OS&amp;quot; with the best-features around, wich doesnt exist anyway in this form&amp;amp;nbsp;:) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 20:31, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:Yes the flaming is stupid. That's why the article was locked, but I think that talk pages should really rarely be locked... indeed, if one wants, it's very difficult, if not impossible, to keep them from flaming one way or the other. [[User:Gryzor|Gryzor]] 17:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:You (Kangaroo) and Rode start the flaming. So you BOTH have to stop it. Nobody else is flaming around. TFM &lt;br /&gt;
::So that is NOT true.. i just mentioned, that future os must be a very great thing and much better than other OSses around, cause your text telled me, that FOS supports any device plugged in without needing a driver and so on. As Rode has written, that he has tried to work with FOS and found things out that arent true within your advertisement text, and after his new FOSuggestion-article looks much better than the original from TFM, i personally think, that i shall call you Monster-Marketing-Machinae (MMM) to keep the traditions&amp;amp;nbsp;:-) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 08:02, 8 September 2006 (CEST) &lt;br /&gt;
:::Well, what Rode has told here are just lies. Everybody can easiely proove this. I never sayd &amp;quot;any device&amp;quot;, I sayd &amp;quot;much devices&amp;quot; - and that is true. Please don't talk about things you have never used. Why? If you ever had used FutureOS, you wouldn't argue that way. And about marketing, I don't want to earn money with FutureOS. Look at your cmo homepage and you see what is MMM! [[TFM|TFM]]&lt;br /&gt;
&lt;br /&gt;
== Unlocking the FutureOS article  ==&lt;br /&gt;
&lt;br /&gt;
Since many changes have been introcuced in this article, which aren't true, this article should be unlocked again - at least for me, the originatior of FutureOS. [[TFM|TFM]] &lt;br /&gt;
&lt;br /&gt;
::The Problem about that is, that YOU arent telling the truth about the features of your OS and make the article an advertisement. So IMHO its better to let others write about the FOS, so its more near reality&amp;amp;nbsp;:-) Nothing personal against you, but it looks like, that you are a bit to enthusiastic with your own shit&amp;amp;nbsp;:) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST) &lt;br /&gt;
:::Stop! I must admit that the first version of the article was a copy of an article I wrote for an english papermag, because I had not the time to do all the work again. But I NEVER wrote something untrue here. If you don't know FutureOS like me, then you should ask first, instead of flaming around. I'm very sorry that you can't be objective. [[TFM|TFM]]&lt;br /&gt;
&lt;br /&gt;
::::Somehow his stamina is impressive - or lets say very psycho. I think no one else would &amp;quot;fight&amp;quot; so hard for a 15 years old and completely outdated project today even in the retro scene, as it is one of the worst software examples of the old days. Regarding the &amp;quot;truth&amp;quot;, even the actual article is not true and the first one was just a cheeky piece of advertisement. Please have a look at the new version, it could be a better base. Sad that this strange guy with his bizarre bunch of routines is the only one, who behaves negative in the CPCWiki. - [[User:Rode|User:Rode]]&lt;br /&gt;
&lt;br /&gt;
Ahh.. and GO get a WIKI-Account instead of posting the shit anonymous its NOT SO HARD, it DOESNT HURT and it will HELP others to see your GOOD WILL (or your willy) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST) &lt;br /&gt;
&lt;br /&gt;
:Finally he found out, how to create an account. But it seems, that he still has to learn a lot of more things, like the behaviour in talk pages etc. It's interesting, that this is the only problematic article in the whole wiki, but as I could see it was always the same with this person in the CPC history. As we know, that he will rollback the article into its original advertisement form, it shouldn't be unlocked for sure. I wrote a more objective version of the article some days ago, and I will suggest it shortly. [[User:Rode|Rode]]&lt;br /&gt;
&lt;br /&gt;
See [[FutureOS/Suggestion1|FutureOS/Suggestion1]] &lt;br /&gt;
&lt;br /&gt;
Dear Rode don't talk about behaviour, because yours is pretty bad. As bad as your suggestion about the FutureOS article. It is known that you don't like FutureOS, this is the reaseon why this article is problematic. Now we have the same problems here like in german Wikipedia before - thanks to you! I would greatly apprecialte if you could leave us here. Only without you it is possible to make this article better, this would help us all. If you have personal problems with FutureOS (or me) then this here is NOT the place for your personal war. [[TFM|TFM]] &lt;br /&gt;
&lt;br /&gt;
== Silicon Storm  ==&lt;br /&gt;
&lt;br /&gt;
Silicon Storm... What is it?&amp;amp;nbsp;Never heard about before...&amp;amp;nbsp; [[Villain|Villain]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:@TFM, lease provide some sources about this mystical &amp;quot;silicon storm&amp;quot; during the next 7 days, otherwise we have to revert the entry again. [[User:Prodatron|Prodatron]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;Silicon.SToRM&amp;amp;nbsp;is the project name of the SymbiFace III&amp;amp;nbsp;prototype boards. The informations regarding that name in this article are substantially wrong, as the&amp;lt;br&amp;gt;&amp;amp;nbsp;SF3 / Silicon.SToRM provides neither a RAM-Extension, a ROM-Extension nor something else, that is allready provided by the SF2.&amp;lt;br&amp;gt;&amp;amp;nbsp;Informations about that prototype should be considered absolutly confidential until i release them myself to the public. to just avoid such missinformations&amp;amp;nbsp;! &amp;lt;br&amp;gt;&amp;amp;nbsp;Unfortunatly i talked to TFM&amp;amp;nbsp;about my current work. Not a good idea as it shows. Thank you much TFM!&amp;amp;nbsp; -&amp;amp;nbsp; I reverted the article to the previous state.&amp;amp;nbsp; [[Dr.Zed|Dr.Zed]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 @Dr. Zed: Sorry dass ich das Wort verwendet habe, hatte eben gerade Zeit und wollte die Seite auf dem aktuellen Stand halten. Ich habe ja sonnst nichts kommentiert. No informations have been provided here at all, nothing bad has happened.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 @Prodatron: &amp;quot;We have to revert&amp;quot; - ja Euer Majestät! Your luck that it is far under my level to treat the SymbOS article like you try to treat the FutureOS article. It was an error to support you with my Floppy Disc routines for SymbOS,&amp;amp;nbsp;just to see you&amp;amp;nbsp;-&amp;amp;nbsp;my friend - falling me in my back again and again.&amp;amp;nbsp;[[TFM|TFM]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
::What kind of reaction is this?? We just wanted to know, what mystical hardware this is. And if it wouldn't exist, there is of course no place for it in the CPC-Wiki. That was everything I wrote, nothing else!?! Crazy reaction... &lt;br /&gt;
::Anyway as we see, you added again a hardware in your blowed-up 'support' list, which you don't support. You even didnt know about the features of the SYMBiFACE III at all (a lot of people already know&amp;amp;nbsp;:-D) and there are no specification available yet, but - of course as usual! - your Fos supports all of it... Wow! Why are you always doing this again and again? What kind of behaviour is this? &lt;br /&gt;
::Oh yes: Your FDC routines (which I don't use btw): Hello?? Did you forget that I also gave you my IDE routines at the same time? That was 2004. Oh man, that's so long ago! You wrote it in all the different lists all the time during all these years, but there is still no FAT file system support available for the public in Fos (ok, maybe in your mystical secret lab) Please note: One of your problems is to post too much hoax. At one point people start stopping believing you at all... [[User:Prodatron|Prodatron]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Dear Prodatron, maybe you don't have recognized it. But you behave here like the original owner of the CPCWiki. You impute that something is not existing only because YOU don't know it. Do you know all in this world? &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- If you would ask like every&amp;amp;nbsp;other person&amp;amp;nbsp;would do... but you issue an ultimatum! Are you the owner of the CPCWiki? &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- About your enduring polemics.... I&amp;amp;nbsp;think really nobody here is willing to read again and again your polemics agains my person or FutureOS. Now I&amp;amp;nbsp;think that FutureOS is much better than I&amp;amp;nbsp;ever thought, only by knowing that you try to fight it in that unfair way. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- FDC routines: Guess you are right, if you would use them correct, then SOS would be faster. Your error. At least my routines were teaching you how to program the FDC. I can proove this with one of your Emails.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Your IDE routines: Some low level routines yes. I never used them.&amp;amp;nbsp;I&amp;amp;nbsp;have much faster ones (See IDE ROM, free downloadable). Don't forget FutureOS can use the second register set of the Z80,&amp;amp;nbsp;that is not possible under SOS. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- The actual IDE ROM for FutureOS can be downloaded. Right, there is no complete FAT support, who cares? I&amp;amp;nbsp;prefer to make a game at the moment. Thats more fun for me. If you have a problem with this, thats not my problem. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- A hoax? Can you please provide hard facts or do you just want to discredite me? I think people believe me, because I'm a honest man, straight and correct. But your behaviour is still unappropriate! What a pity to see you going down that poor way. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally I&amp;amp;nbsp;relly think this discussion is fruitless, lets stop it here. [[TFM|TFM]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I neither use SymbOS nor FutureOS but I honestly have to say that in my eyes it is really very, very strange to mention hardware that is supported by FutureOS that not even exists as a prototype. And what is also really strange is the fact that suddenly a new user appeared (Xyran80) who is editing the SymbOS article. Sometimes I don´t believe in coincidence and really want to ask if all this bullshit is really necessary... [[Villain|Villain]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Villain, to you happens at the moment the same mistake like to pdt before. Only because&amp;amp;nbsp;YOU don't know it, it doesn't mean that it is not existing.&amp;amp;nbsp;I'm not allowed to say if there is a prototype or not (now try to use your mind...) or about any features. I got strictly confidental informations and to mention the name in the hardware list was too much. To mix up several parts of some thing was indeed my error, but nothing else. Even if you or pdt try to get more informations from me, I'm not allowed to talk. Cheap tricks don't work, provacate somebody else, please not me. &lt;br /&gt;
&lt;br /&gt;
The other topic... really! Great! Haaahahahahahaha! Thanks for the hint. Hey guys, now you really have done it. Seems that you have activated somebody who is on my side. And I&amp;amp;nbsp;also really&amp;amp;nbsp;DO NOT believe in coincidence! Sometimes the universe is just fair. And the best thing is, I&amp;amp;nbsp;just must not move only one finger. Hahahahahaha! Thank you all for this wonderfull day! [[TFM|TFM]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::Guys, guys,'''PLEASE CALM DOWN EVERYBODY!'''&amp;amp;nbsp;I don't think that TFM commited such a crime. He hinted at some project noone knew about, as far as community goes I find this funny and exciting. True, the project's owner may object to it, but the truth is that no details were given. No need to jump on each other's throat, I think, and really no need for reversion threats... things have been bumpy in the past, let's try and be more courteous. &lt;br /&gt;
::@TFM: (btw, please write in english. I get most of it in german, but not all of it and not all the time) Although I don't think this was a serious, ehm, offense, please do try and keep in mind other members' sensitivities. If someone lets you into a project that is under development, there's no point in announcing it before consulting with them... don'y you think?? [[User:Gryzor|Gryzor]] 19:50, 8 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ok, no problem, in future all in english. I was not thinking that a little change in this site will force that strong reactions. So I'm happy that some guys have still strong interest at FutureOS&amp;amp;nbsp;;-) However there is enough time. I can wait and if the time is right I will add some updates here. Bye, [[TFM|TFM]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Discussion about the content  ==&lt;br /&gt;
&lt;br /&gt;
Please don't introduce errors in this article without discuss it here before. Gryzor, if you think FutureOS hat no GUI please provide evidence for it. FutureOS uses a mouse-pointer, icons and a&amp;amp;nbsp;explorer-lile file window. So it's not so different to windows. If you thinks that ms windows has a GUI&amp;amp;nbsp;then FutureOS has also a GUI. &lt;br /&gt;
&lt;br /&gt;
Please start to discuss here first and don't vandalize the article. You had your fun, please become serious again. &lt;br /&gt;
&lt;br /&gt;
[[TFM|TFM]]&lt;br /&gt;
&lt;br /&gt;
OMG! I think it´s time to... You know what I mean? But it´s really funny, some kind of BigBrother here...&lt;br /&gt;
&lt;br /&gt;
[[Villain|Villain]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=28009</id>
		<title>Talk:FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=28009"/>
				<updated>2008-12-10T19:51:26Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Questions...==&lt;br /&gt;
&lt;br /&gt;
Hmm.. are there any applications for Future OS?&lt;br /&gt;
And can i really add any device and it will be recommended by the system without any device driver? &lt;br /&gt;
Unbelievable!! and much better than SymbOS then, isn't it? (Forgott to sign.. sorry.. but as i don't fear anything... here i am... [[User:Kangaroo|Kangaroo MusiQue of HJT]] 07:59, 28 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:First you can't compare SymbOS and FutureOS. They're too different and therefore I use them both.&lt;br /&gt;
:Software for FutureOS is availabe in the Yahoo-Group, where you can download it.&lt;br /&gt;
:And yes, I try to support nearly all hardware for the CPC. Ok, some is still missing, but this will change soon I hope.&lt;br /&gt;
:About features: Ok, I haven't finished the new documentation in english. But if I look at other projects, I have to believe, so believe me too.&lt;br /&gt;
:That would only be fair.&lt;br /&gt;
:I have no time to explain the 126th time where some support function is. read the manual, the new version coming soon.&lt;br /&gt;
&lt;br /&gt;
:Greets to all honest CPC sceners,&lt;br /&gt;
:TFM&lt;br /&gt;
&lt;br /&gt;
:: Please try to keep your tone down. I'm letting this here as an example of what NOT to say. RTFM is NOT part of the language that will be tolerated here, if we want to keep a flame war out of our wiki; so please keep this in mind. And please don't jump to conclusions - several users still do not know about signing their entries! It seems to me the original poster was more positive than negative, so you could try and calmly answer to his questions, otherwise there's no reason in replying at all. This is NOT a debate room, and fights will NOT ('''NOT!''') be welcome here. You do not need to be apologetic (as you are in a couple of points) about anything that FutureOS may be lacking, since it's a wonderful system anyhow, but also taking it to the other extreme doesn't exactly help things either.&lt;br /&gt;
&lt;br /&gt;
::Best regards, &lt;br /&gt;
::[[User:Gryzor|Gryzor]] 16:02, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:::RTFM means Read The Futureos Manual, so where is the problem? That guy (without name) is allowed to vandalish my text? Why don't you stop him?&lt;br /&gt;
&lt;br /&gt;
:::Anyhow, and why don't talk about something other very unfair. At the left side, below &amp;quot;the present&amp;quot; there is a line for SymbOS, why not FutueOS. I would like to please you to insert that line.&lt;br /&gt;
&lt;br /&gt;
:::Greets&lt;br /&gt;
:::TFM&lt;br /&gt;
&lt;br /&gt;
::::Can we please stop hiding behind our finger? We all know what RTFM means, so please drop it. I assume almost everyone here is of at least average IQ... As I said, this languages is NOT permitted on board. What's more, what do you mean about that guy being allowed to vandalise your text? What did he vandalise? What should I stop? I think there might be a big misunderstanding here... Anyhow, about the SIdebar, I don't think it's 'very unfair', as I've explained before. FutureOS may be indeed very, very nice a project and I find myself playing with it the whole time, but SymbOS, with the existing Symbiface, has long ago reached critical mass and is very impressive and popular, that's why it had its own link. This is NOT an issue of 'put my project up there along with the others', it's trying to organise things in a better way. In any case, the Sidebar was changed a lot, I'm going to look into it... [[User:Gryzor|Gryzor]] 08:16, 11 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:That's something, which came to my mind very often! We should change the &amp;quot;SymbOS&amp;quot; link in the left menu to &amp;quot;Operating Systems&amp;quot;. Then we can have a list of OSs for the CPC there. It would be a better entry point! --[[User:Octoate|Octoate]] 20:40, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Hm, I don't know. In this case you have to place all categories from the &amp;quot;serious software&amp;quot; articel in the sidebar. -- [[User:Prodatron|Prodatron]] 21:00, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Argh... ;) --[[User:Octoate|Octoate]] 21:24, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
== What's about respecting some rules? ==&lt;br /&gt;
&lt;br /&gt;
As this is not Wikipedia but our own scene CPCWiki, I wouldn't like to force the articles to follow strict rules, but at least the following two rules should be respected by everyone:&lt;br /&gt;
* no advertisment-like phrases&lt;br /&gt;
* no false information&lt;br /&gt;
&lt;br /&gt;
The following parts in this article should be removed and replaced in a section like &amp;quot;possible plans for the future&amp;quot;:&lt;br /&gt;
* IDE support (mentioned several times, and first I mixed v8 with v9, but as it should only be a possible part of v9 [and now even v8 isn't released], it will not be implemented before 2007 or later, right?)&lt;br /&gt;
* CPC Booster support (you can't call an entry in the port monitor &amp;quot;support&amp;quot;)&lt;br /&gt;
* Multi tasking (I couldn't find any references)&lt;br /&gt;
If I am wrong, and these features are already implemented in FutureOS and ready for download, please provide us a link.&lt;br /&gt;
&lt;br /&gt;
Some other parts should also be removed:&lt;br /&gt;
* One-drive restriction of other OSs (nearly every OS can do this, even Amsdos allows drive letters in a path)&lt;br /&gt;
* Advertisment-like phrases (e.g. &amp;quot;FutureOS is for programmers who want to use the CPC at its limits&amp;quot; and other ones; these should be better placed on a homepage but not in a Wiki)&lt;br /&gt;
-- [[User:Prodatron|Prodatron]] 00:05, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I sense a scene fight coming on, I'm afraid... I do not wish to take any part in it, especially since I do not know anything about the common history of projects, but I hope it stays off the wiki!&lt;br /&gt;
::Well, in general it is quite easy to follow some necessary rules, so I am not afraid about fights. -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I'll have to agree with some of Prodatron's remarks. The article needs heavy editing (I have altered several points myself, more is needed) so as to not appear as a commercial for FutureOS but more like an objective article. Also, at points it becomes more of a manual than an article on the OS itself.&lt;br /&gt;
&lt;br /&gt;
:That said, even in Symbiface there was the phrase: ''It provides nearly everything you need to change your CPC into a powerful work station!'' which is more of the same :)&lt;br /&gt;
::Yes, that's right. I think someone just copied &amp;amp; pasted this from the homepage ;) -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:To get back to Prodatron's remarks, if his points are valid the article should be corrected. If ''system .9'', as it is called in the article, indeed refers to FutureOS v9 then I also think that it should be re-written, especially since not even v8 has been released (really looking forward to it!).&lt;br /&gt;
&lt;br /&gt;
:In general, I would urge '''ALL''' contributors who are also developers, to try and keep their usual enthusiasm (read: ego ;) ) at a low, since we are trying to do an objective work and not promote one or the other product... Thanks! [[User:Gryzor|Gryzor]] 09:47, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I have cleaned up the whole artice, removed advertisment-like phrases, re-wrote sentences that sounded too much like advertising and thigthened the language. Articles should contain no false or biased statements in any form. Keep it clear, true, neutral and objective. This is what I tried to accomplish when editing this article.&lt;br /&gt;
- 2006-08-09; Gwildor -&lt;br /&gt;
:Thanks for your effort Gwildor! The article looks a bit more polished now. --[[User:Octoate|Octoate]] 14:07, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I think the maximum file size currently is 512KB (19bit). I couldn't find any possibilities to load data from files, which are bigger than 512KB. Why is 16MB/24bit mentioned in the article? Also a planned feature for the future? -- [[User:Prodatron|Prodatron]] 17:02, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
The maximum file-size depends on the free space on disc-hard-disc or it is limited by a 24 Bit file-length code. Just look at the manual. You can use routines like TEILA or TEISI to load or save files greater then 576 KB. TFM&lt;br /&gt;
&lt;br /&gt;
== Looks good now ==&lt;br /&gt;
&lt;br /&gt;
Thanx to everybodys' effort the article looks a lot better now. I wouldn't call &amp;quot;CPC Booster support&amp;quot; like this, but who cares. What's about summarising some very small sections and maybe removing some user-manual-like sentences? -- [[User:Prodatron|Prodatron]] 17:44, 10 August 2006 (CEST)&lt;br /&gt;
:Sumarised all sections which contained only 1 or 2 sentences and removed the FioLib text in its own article. -- [[User:Prodatron|Prodatron]] 19:16, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
Thank you for your excellent help. TFM&lt;br /&gt;
&lt;br /&gt;
== Protection ==&lt;br /&gt;
&lt;br /&gt;
This part of the discussion has been deleted; please do not roll back.&lt;br /&gt;
&lt;br /&gt;
The reason I deleted it is because it turned into a flame, and also because some people do not understand how to format their edits by using semi-colons to keep the thread flow easy to understand. As a result it was a flame that was very hard to follow. I will just keep the following:&lt;br /&gt;
&lt;br /&gt;
The article will remain locked for the time being. It's really unfortunate that events are taking such a turn, at a time when the wiki is expanding at a good rate, which means that someone will have to keep an eye on all that is being written. Let's see if the discussion cools down a bit, then decide. &lt;br /&gt;
&lt;br /&gt;
That said, the initial article and subsequent edits were nothing less than shameless plugs for FutureOS. If you want to publish a plug, put it on your Profile page -- '''provided you create one''' and that you do not post anonymously! Why is it so darn hard to understand this??? [[User:Gryzor|Gryzor]] 19:42, 29 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
How to plug for something, which costs no money?&lt;br /&gt;
&lt;br /&gt;
:: I can also get different religions for free, nevertheless I want that someone tells me in a fundamentalistic way why his religion is best. The fact that something is free doesn´t mean that the wiki rules don´t have to be respected.&lt;br /&gt;
&lt;br /&gt;
::: Right! So respect your own rules. Maybe the article wasn't ideal for wiki at first. But better an article that could be corrected than nothing to read. And the comparison about religion is very low under my level.&lt;br /&gt;
&lt;br /&gt;
== Flaming ==&lt;br /&gt;
&lt;br /&gt;
Will it be possible, to stop flaming around that future os thing? I hate it to see people fighting for nothing :D&lt;br /&gt;
So maybe it will be the best to protect the whole article and the talk-area to stop annoying and useless posts from both parties [[User:Kangaroo|Kangaroo MusiQue of HJT]] 14:06, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Well, but who started the flaming? ;-)) [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;oldid=2154], [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;diff=4395&amp;amp;oldid=4393] I think at least the talk page shouldn't be protected, otherwise I am afraid, that it will continue on the general discussion page. -- [[User:Prodatron|Prodatron]] 15:02, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: :-) It was just my first reaction on the original-article as i read it. And that where logical questions, after reading an advertisement-text on the wiki for a &amp;quot;ultimate OS&amp;quot; with the best-features around, wich doesnt exist anyway in this form :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 20:31, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Yes the flaming is stupid. That's why the article was locked, but I think that talk pages should really rarely be locked... indeed, if one wants, it's very difficult, if not impossible, to keep them from flaming one way or the other. [[User:Gryzor|Gryzor]] 17:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: You (Kangaroo) and Rode start the flaming. So you BOTH have to stop it. Nobody else is flaming around. TFM&lt;br /&gt;
:: So that is NOT true.. i just mentioned, that future os must be a very great thing and much better than other OSses around, cause your text telled me, that FOS supports any device plugged in without needing a driver and so on. As Rode has written, that he has tried to work with FOS and found things out that arent true within your advertisement text, and after his new FOSuggestion-article looks much better than the original from TFM, i personally think, that i shall call you Monster-Marketing-Machinae (MMM) to keep the traditions :-) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 08:02, 8 September 2006 (CEST)&lt;br /&gt;
::: Well, what Rode has told here are just lies. Everybody can easiely proove this. I never sayd &amp;quot;any device&amp;quot;, I sayd &amp;quot;much devices&amp;quot; - and that is true. Please don't talk about things you have never used. Why? If you ever had used FutureOS, you wouldn't argue that way. And about marketing, I don't want to earn money with FutureOS. Look at your cmo homepage and you see what is MMM! [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Unlocking the FutureOS article ==&lt;br /&gt;
&lt;br /&gt;
Since many changes have been introcuced in this article, which aren't true, this article should be unlocked again - at least for me, the originatior of FutureOS. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:: The Problem about that is, that YOU arent telling the truth about the features of your OS and make the article an advertisement. So IMHO its better to let others write about the FOS, so its more near reality :-) Nothing personal against you, but it looks like, that you are a bit to enthusiastic with your own shit :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
::: Stop! I must admit that the first version of the article was a copy of an article I wrote for an english papermag, because I had not the time to do all the work again. But I NEVER wrote something untrue here. If you don't know FutureOS like me, then you should ask first, instead of flaming around. I'm very sorry that you can't be objective. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:::: Somehow his stamina is impressive - or lets say very psycho. I think no one else would &amp;quot;fight&amp;quot; so hard for a 15 years old and completely outdated project today even in the retro scene, as it is one of the worst software examples of the old days. Regarding the &amp;quot;truth&amp;quot;, even the actual article is not true and the first one was just a cheeky piece of advertisement. Please have a look at the new version, it could be a better base. Sad that this strange guy with his bizarre bunch of routines is the only one, who behaves negative in the CPCWiki. - [[User:Rode]]&lt;br /&gt;
&lt;br /&gt;
Ahh.. and GO get a WIKI-Account instead of posting the shit anonymous its NOT SO HARD, it DOESNT HURT and it will HELP others to see your GOOD WILL (or your willy) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Finally he found out, how to create an account. But it seems, that he still has to learn a lot of more things, like the behaviour in talk pages etc. It's interesting, that this is the only problematic article in the whole wiki, but as I could see it was always the same with this person in the CPC history. As we know, that he will rollback the article into its original advertisement form, it shouldn't be unlocked for sure. I wrote a more objective version of the article some days ago, and I will suggest it shortly. [[User:Rode|Rode]]&lt;br /&gt;
&lt;br /&gt;
See [[FutureOS/Suggestion1]]&lt;br /&gt;
&lt;br /&gt;
Dear Rode don't talk about behaviour, because yours is pretty bad. As bad as your suggestion about the FutureOS article.&lt;br /&gt;
It is known that you don't like FutureOS, this is the reaseon why this article is problematic. Now we have the same problems here like in german Wikipedia before - thanks to you! I would greatly apprecialte if you could leave us here. Only without you it is possible to make this article better, this would help us all. If you have personal problems with FutureOS (or me) then this here is NOT the place for your personal war. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Silicon Storm  ==&lt;br /&gt;
&lt;br /&gt;
Silicon Storm... What is it?&amp;amp;nbsp;Never heard about before...&amp;amp;nbsp; [[Villain|Villain]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
:@TFM, lease provide some sources about this mystical &amp;quot;silicon storm&amp;quot; during the next 7 days, otherwise we have to revert the entry again. [[User:Prodatron|Prodatron]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;Silicon.SToRM&amp;amp;nbsp;is the project name of the SymbiFace III&amp;amp;nbsp;prototype boards. The informations regarding that name in this article are substantially wrong, as the&amp;lt;br&amp;gt;&amp;amp;nbsp;SF3 / Silicon.SToRM provides neither a RAM-Extension, a ROM-Extension nor something else, that is allready provided by the SF2.&amp;lt;br&amp;gt;&amp;amp;nbsp;Informations about that prototype should be considered absolutly confidential until i release them myself to the public. to just avoid such missinformations&amp;amp;nbsp;! &amp;lt;br&amp;gt;&amp;amp;nbsp;Unfortunatly i talked to TFM&amp;amp;nbsp;about my current work. Not a good idea as it shows. Thank you much TFM!&amp;amp;nbsp; -&amp;amp;nbsp; I reverted the article to the previous state.&amp;amp;nbsp; [[Dr.Zed|Dr.Zed]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
 @Dr. Zed: Sorry dass ich das Wort verwendet habe, hatte eben gerade Zeit und wollte die Seite auf dem aktuellen Stand halten. Ich habe ja sonnst nichts kommentiert. No informations have been provided here at all, nothing bad has happened.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
 @Prodatron: &amp;quot;We have to revert&amp;quot; - ja Euer Majestät! Your luck that it is far under my level to treat the SymbOS article like you try to treat the FutureOS article. It was an error to support you with my Floppy Disc routines for SymbOS,&amp;amp;nbsp;just to see you&amp;amp;nbsp;-&amp;amp;nbsp;my friend - falling me in my back again and again.&amp;amp;nbsp;[[TFM|TFM]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
::What kind of reaction is this?? We just wanted to know, what mystical hardware this is. And if it wouldn't exist, there is of course no place for it in the CPC-Wiki. That was everything I wrote, nothing else!?! Crazy reaction... &lt;br /&gt;
::Anyway as we see, you added again a hardware in your blowed-up 'support' list, which you don't support. You even didnt know about the features of the SYMBiFACE III at all (a lot of people already know&amp;amp;nbsp;:-D) and there are no specification available yet, but - of course as usual! - your Fos supports all of it... Wow! Why are you always doing this again and again? What kind of behaviour is this? &lt;br /&gt;
::Oh yes: Your FDC routines (which I don't use btw): Hello?? Did you forget that I also gave you my IDE routines at the same time? That was 2004. Oh man, that's so long ago! You wrote it in all the different lists all the time during all these years, but there is still no FAT file system support available for the public in Fos (ok, maybe in your mystical secret lab) Please note: One of your problems is to post too much hoax. At one point people start stopping believing you at all... [[User:Prodatron|Prodatron]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- Dear Prodatron, maybe you don't have recognized it. But you behave here like the original owner of the CPCWiki. You impute that something is not existing only because YOU don't know it. Do you know all in this world? &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- If you would ask like every&amp;amp;nbsp;other person&amp;amp;nbsp;would do... but you issue an ultimatum! Are you the owner of the CPCWiki? &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- About your enduring polemics.... I&amp;amp;nbsp;think really nobody here is willing to read again and again your polemics agains my person or FutureOS. Now I&amp;amp;nbsp;think that FutureOS is much better than I&amp;amp;nbsp;ever thought, only by knowing that you try to fight it in that unfair way. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- FDC routines: Guess you are right, if you would use them correct, then SOS would be faster. Your error. At least my routines were teaching you how to program the FDC. I can proove this with one of your Emails.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- Your IDE routines: Some low level routines yes. I never used them.&amp;amp;nbsp;I&amp;amp;nbsp;have much faster ones (See IDE ROM, free downloadable). Don't forget FutureOS can use the second register set of the Z80,&amp;amp;nbsp;that is not possible under SOS. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- The actual IDE ROM for FutureOS can be downloaded. Right, there is no complete FAT support, who cares? I&amp;amp;nbsp;prefer to make a game at the moment. Thats more fun for me. If you have a problem with this, thats not my problem. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
- A hoax? Can you please provide hard facts or do you just want to discredite me? I think people believe me, because I'm a honest man, straight and correct. But your behaviour is still unappropriate! What a pity to see you going down that poor way. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Finally I&amp;amp;nbsp;relly think this discussion is fruitless, lets stop it here. [[TFM|TFM]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
I neither use SymbOS nor FutureOS but I honestly have to say that in my eyes it is really very, very strange to mention hardware that is supported by FutureOS that not even exists as a prototype. And what is also really strange is the fact that suddenly a new user appeared (Xyran80) who is editing the SymbOS article. Sometimes I don´t believe in coincidence and really want to ask if all this bullshit is really necessary... [[Villain|Villain]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
::Guys, guys,'''PLEASE CALM DOWN EVERYBODY!'''&amp;amp;nbsp;I don't think that TFM commited such a crime. He hinted at some project noone knew about, as far as community goes I find this funny and exciting. True, the project's owner may object to it, but the truth is that no details were given. No need to jump on each other's throat, I think, and really no need for reversion threats... things have been bumpy in the past, let's try and be more courteous. &lt;br /&gt;
::@TFM: (btw, please write in english. I get most of it in german, but not all of it and not all the time) Although I don't think this was a serious, ehm, offense, please do try and keep in mind other members' sensitivities. If someone lets you into a project that is under development, there's no point in announcing it before consulting with them... don'y you think?? [[User:Gryzor|Gryzor]] 19:50, 8 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Ok, no problem, in future all in english. I was not thinking that a little change in this site will force that strong reactions. So I'm happy that some guys have still strong interest at FutureOS&amp;amp;nbsp;;-) However there is enough time. I can wait and if the time is right I will add some updates here. Bye, [[TFM|TFM]].&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=27954</id>
		<title>Talk:FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=27954"/>
				<updated>2008-12-04T20:28:07Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Questions...==&lt;br /&gt;
&lt;br /&gt;
Hmm.. are there any applications for Future OS?&lt;br /&gt;
And can i really add any device and it will be recommended by the system without any device driver? &lt;br /&gt;
Unbelievable!! and much better than SymbOS then, isn't it? (Forgott to sign.. sorry.. but as i don't fear anything... here i am... [[User:Kangaroo|Kangaroo MusiQue of HJT]] 07:59, 28 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:First you can't compare SymbOS and FutureOS. They're too different and therefore I use them both.&lt;br /&gt;
:Software for FutureOS is availabe in the Yahoo-Group, where you can download it.&lt;br /&gt;
:And yes, I try to support nearly all hardware for the CPC. Ok, some is still missing, but this will change soon I hope.&lt;br /&gt;
:About features: Ok, I haven't finished the new documentation in english. But if I look at other projects, I have to believe, so believe me too.&lt;br /&gt;
:That would only be fair.&lt;br /&gt;
:I have no time to explain the 126th time where some support function is. read the manual, the new version coming soon.&lt;br /&gt;
&lt;br /&gt;
:Greets to all honest CPC sceners,&lt;br /&gt;
:TFM&lt;br /&gt;
&lt;br /&gt;
:: Please try to keep your tone down. I'm letting this here as an example of what NOT to say. RTFM is NOT part of the language that will be tolerated here, if we want to keep a flame war out of our wiki; so please keep this in mind. And please don't jump to conclusions - several users still do not know about signing their entries! It seems to me the original poster was more positive than negative, so you could try and calmly answer to his questions, otherwise there's no reason in replying at all. This is NOT a debate room, and fights will NOT ('''NOT!''') be welcome here. You do not need to be apologetic (as you are in a couple of points) about anything that FutureOS may be lacking, since it's a wonderful system anyhow, but also taking it to the other extreme doesn't exactly help things either.&lt;br /&gt;
&lt;br /&gt;
::Best regards, &lt;br /&gt;
::[[User:Gryzor|Gryzor]] 16:02, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:::RTFM means Read The Futureos Manual, so where is the problem? That guy (without name) is allowed to vandalish my text? Why don't you stop him?&lt;br /&gt;
&lt;br /&gt;
:::Anyhow, and why don't talk about something other very unfair. At the left side, below &amp;quot;the present&amp;quot; there is a line for SymbOS, why not FutueOS. I would like to please you to insert that line.&lt;br /&gt;
&lt;br /&gt;
:::Greets&lt;br /&gt;
:::TFM&lt;br /&gt;
&lt;br /&gt;
::::Can we please stop hiding behind our finger? We all know what RTFM means, so please drop it. I assume almost everyone here is of at least average IQ... As I said, this languages is NOT permitted on board. What's more, what do you mean about that guy being allowed to vandalise your text? What did he vandalise? What should I stop? I think there might be a big misunderstanding here... Anyhow, about the SIdebar, I don't think it's 'very unfair', as I've explained before. FutureOS may be indeed very, very nice a project and I find myself playing with it the whole time, but SymbOS, with the existing Symbiface, has long ago reached critical mass and is very impressive and popular, that's why it had its own link. This is NOT an issue of 'put my project up there along with the others', it's trying to organise things in a better way. In any case, the Sidebar was changed a lot, I'm going to look into it... [[User:Gryzor|Gryzor]] 08:16, 11 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:That's something, which came to my mind very often! We should change the &amp;quot;SymbOS&amp;quot; link in the left menu to &amp;quot;Operating Systems&amp;quot;. Then we can have a list of OSs for the CPC there. It would be a better entry point! --[[User:Octoate|Octoate]] 20:40, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Hm, I don't know. In this case you have to place all categories from the &amp;quot;serious software&amp;quot; articel in the sidebar. -- [[User:Prodatron|Prodatron]] 21:00, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Argh... ;) --[[User:Octoate|Octoate]] 21:24, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
== What's about respecting some rules? ==&lt;br /&gt;
&lt;br /&gt;
As this is not Wikipedia but our own scene CPCWiki, I wouldn't like to force the articles to follow strict rules, but at least the following two rules should be respected by everyone:&lt;br /&gt;
* no advertisment-like phrases&lt;br /&gt;
* no false information&lt;br /&gt;
&lt;br /&gt;
The following parts in this article should be removed and replaced in a section like &amp;quot;possible plans for the future&amp;quot;:&lt;br /&gt;
* IDE support (mentioned several times, and first I mixed v8 with v9, but as it should only be a possible part of v9 [and now even v8 isn't released], it will not be implemented before 2007 or later, right?)&lt;br /&gt;
* CPC Booster support (you can't call an entry in the port monitor &amp;quot;support&amp;quot;)&lt;br /&gt;
* Multi tasking (I couldn't find any references)&lt;br /&gt;
If I am wrong, and these features are already implemented in FutureOS and ready for download, please provide us a link.&lt;br /&gt;
&lt;br /&gt;
Some other parts should also be removed:&lt;br /&gt;
* One-drive restriction of other OSs (nearly every OS can do this, even Amsdos allows drive letters in a path)&lt;br /&gt;
* Advertisment-like phrases (e.g. &amp;quot;FutureOS is for programmers who want to use the CPC at its limits&amp;quot; and other ones; these should be better placed on a homepage but not in a Wiki)&lt;br /&gt;
-- [[User:Prodatron|Prodatron]] 00:05, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I sense a scene fight coming on, I'm afraid... I do not wish to take any part in it, especially since I do not know anything about the common history of projects, but I hope it stays off the wiki!&lt;br /&gt;
::Well, in general it is quite easy to follow some necessary rules, so I am not afraid about fights. -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I'll have to agree with some of Prodatron's remarks. The article needs heavy editing (I have altered several points myself, more is needed) so as to not appear as a commercial for FutureOS but more like an objective article. Also, at points it becomes more of a manual than an article on the OS itself.&lt;br /&gt;
&lt;br /&gt;
:That said, even in Symbiface there was the phrase: ''It provides nearly everything you need to change your CPC into a powerful work station!'' which is more of the same :)&lt;br /&gt;
::Yes, that's right. I think someone just copied &amp;amp; pasted this from the homepage ;) -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:To get back to Prodatron's remarks, if his points are valid the article should be corrected. If ''system .9'', as it is called in the article, indeed refers to FutureOS v9 then I also think that it should be re-written, especially since not even v8 has been released (really looking forward to it!).&lt;br /&gt;
&lt;br /&gt;
:In general, I would urge '''ALL''' contributors who are also developers, to try and keep their usual enthusiasm (read: ego ;) ) at a low, since we are trying to do an objective work and not promote one or the other product... Thanks! [[User:Gryzor|Gryzor]] 09:47, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I have cleaned up the whole artice, removed advertisment-like phrases, re-wrote sentences that sounded too much like advertising and thigthened the language. Articles should contain no false or biased statements in any form. Keep it clear, true, neutral and objective. This is what I tried to accomplish when editing this article.&lt;br /&gt;
- 2006-08-09; Gwildor -&lt;br /&gt;
:Thanks for your effort Gwildor! The article looks a bit more polished now. --[[User:Octoate|Octoate]] 14:07, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I think the maximum file size currently is 512KB (19bit). I couldn't find any possibilities to load data from files, which are bigger than 512KB. Why is 16MB/24bit mentioned in the article? Also a planned feature for the future? -- [[User:Prodatron|Prodatron]] 17:02, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
The maximum file-size depends on the free space on disc-hard-disc or it is limited by a 24 Bit file-length code. Just look at the manual. You can use routines like TEILA or TEISI to load or save files greater then 576 KB. TFM&lt;br /&gt;
&lt;br /&gt;
== Looks good now ==&lt;br /&gt;
&lt;br /&gt;
Thanx to everybodys' effort the article looks a lot better now. I wouldn't call &amp;quot;CPC Booster support&amp;quot; like this, but who cares. What's about summarising some very small sections and maybe removing some user-manual-like sentences? -- [[User:Prodatron|Prodatron]] 17:44, 10 August 2006 (CEST)&lt;br /&gt;
:Sumarised all sections which contained only 1 or 2 sentences and removed the FioLib text in its own article. -- [[User:Prodatron|Prodatron]] 19:16, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
Thank you for your excellent help. TFM&lt;br /&gt;
&lt;br /&gt;
== Protection ==&lt;br /&gt;
&lt;br /&gt;
This part of the discussion has been deleted; please do not roll back.&lt;br /&gt;
&lt;br /&gt;
The reason I deleted it is because it turned into a flame, and also because some people do not understand how to format their edits by using semi-colons to keep the thread flow easy to understand. As a result it was a flame that was very hard to follow. I will just keep the following:&lt;br /&gt;
&lt;br /&gt;
The article will remain locked for the time being. It's really unfortunate that events are taking such a turn, at a time when the wiki is expanding at a good rate, which means that someone will have to keep an eye on all that is being written. Let's see if the discussion cools down a bit, then decide. &lt;br /&gt;
&lt;br /&gt;
That said, the initial article and subsequent edits were nothing less than shameless plugs for FutureOS. If you want to publish a plug, put it on your Profile page -- '''provided you create one''' and that you do not post anonymously! Why is it so darn hard to understand this??? [[User:Gryzor|Gryzor]] 19:42, 29 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
How to plug for something, which costs no money?&lt;br /&gt;
&lt;br /&gt;
:: I can also get different religions for free, nevertheless I want that someone tells me in a fundamentalistic way why his religion is best. The fact that something is free doesn´t mean that the wiki rules don´t have to be respected.&lt;br /&gt;
&lt;br /&gt;
::: Right! So respect your own rules. Maybe the article wasn't ideal for wiki at first. But better an article that could be corrected than nothing to read. And the comparison about religion is very low under my level.&lt;br /&gt;
&lt;br /&gt;
== Flaming ==&lt;br /&gt;
&lt;br /&gt;
Will it be possible, to stop flaming around that future os thing? I hate it to see people fighting for nothing :D&lt;br /&gt;
So maybe it will be the best to protect the whole article and the talk-area to stop annoying and useless posts from both parties [[User:Kangaroo|Kangaroo MusiQue of HJT]] 14:06, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Well, but who started the flaming? ;-)) [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;oldid=2154], [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;diff=4395&amp;amp;oldid=4393] I think at least the talk page shouldn't be protected, otherwise I am afraid, that it will continue on the general discussion page. -- [[User:Prodatron|Prodatron]] 15:02, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: :-) It was just my first reaction on the original-article as i read it. And that where logical questions, after reading an advertisement-text on the wiki for a &amp;quot;ultimate OS&amp;quot; with the best-features around, wich doesnt exist anyway in this form :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 20:31, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Yes the flaming is stupid. That's why the article was locked, but I think that talk pages should really rarely be locked... indeed, if one wants, it's very difficult, if not impossible, to keep them from flaming one way or the other. [[User:Gryzor|Gryzor]] 17:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: You (Kangaroo) and Rode start the flaming. So you BOTH have to stop it. Nobody else is flaming around. TFM&lt;br /&gt;
:: So that is NOT true.. i just mentioned, that future os must be a very great thing and much better than other OSses around, cause your text telled me, that FOS supports any device plugged in without needing a driver and so on. As Rode has written, that he has tried to work with FOS and found things out that arent true within your advertisement text, and after his new FOSuggestion-article looks much better than the original from TFM, i personally think, that i shall call you Monster-Marketing-Machinae (MMM) to keep the traditions :-) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 08:02, 8 September 2006 (CEST)&lt;br /&gt;
::: Well, what Rode has told here are just lies. Everybody can easiely proove this. I never sayd &amp;quot;any device&amp;quot;, I sayd &amp;quot;much devices&amp;quot; - and that is true. Please don't talk about things you have never used. Why? If you ever had used FutureOS, you wouldn't argue that way. And about marketing, I don't want to earn money with FutureOS. Look at your cmo homepage and you see what is MMM! [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Unlocking the FutureOS article ==&lt;br /&gt;
&lt;br /&gt;
Since many changes have been introcuced in this article, which aren't true, this article should be unlocked again - at least for me, the originatior of FutureOS. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:: The Problem about that is, that YOU arent telling the truth about the features of your OS and make the article an advertisement. So IMHO its better to let others write about the FOS, so its more near reality :-) Nothing personal against you, but it looks like, that you are a bit to enthusiastic with your own shit :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
::: Stop! I must admit that the first version of the article was a copy of an article I wrote for an english papermag, because I had not the time to do all the work again. But I NEVER wrote something untrue here. If you don't know FutureOS like me, then you should ask first, instead of flaming around. I'm very sorry that you can't be objective. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:::: Somehow his stamina is impressive - or lets say very psycho. I think no one else would &amp;quot;fight&amp;quot; so hard for a 15 years old and completely outdated project today even in the retro scene, as it is one of the worst software examples of the old days. Regarding the &amp;quot;truth&amp;quot;, even the actual article is not true and the first one was just a cheeky piece of advertisement. Please have a look at the new version, it could be a better base. Sad that this strange guy with his bizarre bunch of routines is the only one, who behaves negative in the CPCWiki. - [[User:Rode]]&lt;br /&gt;
&lt;br /&gt;
Ahh.. and GO get a WIKI-Account instead of posting the shit anonymous its NOT SO HARD, it DOESNT HURT and it will HELP others to see your GOOD WILL (or your willy) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Finally he found out, how to create an account. But it seems, that he still has to learn a lot of more things, like the behaviour in talk pages etc. It's interesting, that this is the only problematic article in the whole wiki, but as I could see it was always the same with this person in the CPC history. As we know, that he will rollback the article into its original advertisement form, it shouldn't be unlocked for sure. I wrote a more objective version of the article some days ago, and I will suggest it shortly. [[User:Rode|Rode]]&lt;br /&gt;
&lt;br /&gt;
See [[FutureOS/Suggestion1]]&lt;br /&gt;
&lt;br /&gt;
Dear Rode don't talk about behaviour, because yours is pretty bad. As bad as your suggestion about the FutureOS article.&lt;br /&gt;
It is known that you don't like FutureOS, this is the reaseon why this article is problematic. Now we have the same problems here like in german Wikipedia before - thanks to you! I would greatly apprecialte if you could leave us here. Only without you it is possible to make this article better, this would help us all. If you have personal problems with FutureOS (or me) then this here is NOT the place for your personal war. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Silicon Storm  ==&lt;br /&gt;
&lt;br /&gt;
Silicon Storm... What is it?&amp;amp;nbsp;Never heard about before...&amp;amp;nbsp;&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=27953</id>
		<title>Talk:FutureOS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;diff=27953"/>
				<updated>2008-12-04T20:27:09Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: /* Silicon Storm */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Questions...==&lt;br /&gt;
&lt;br /&gt;
Hmm.. are there any applications for Future OS?&lt;br /&gt;
And can i really add any device and it will be recommended by the system without any device driver? &lt;br /&gt;
Unbelievable!! and much better than SymbOS then, isn't it? (Forgott to sign.. sorry.. but as i don't fear anything... here i am... [[User:Kangaroo|Kangaroo MusiQue of HJT]] 07:59, 28 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:First you can't compare SymbOS and FutureOS. They're too different and therefore I use them both.&lt;br /&gt;
:Software for FutureOS is availabe in the Yahoo-Group, where you can download it.&lt;br /&gt;
:And yes, I try to support nearly all hardware for the CPC. Ok, some is still missing, but this will change soon I hope.&lt;br /&gt;
:About features: Ok, I haven't finished the new documentation in english. But if I look at other projects, I have to believe, so believe me too.&lt;br /&gt;
:That would only be fair.&lt;br /&gt;
:I have no time to explain the 126th time where some support function is. read the manual, the new version coming soon.&lt;br /&gt;
&lt;br /&gt;
:Greets to all honest CPC sceners,&lt;br /&gt;
:TFM&lt;br /&gt;
&lt;br /&gt;
:: Please try to keep your tone down. I'm letting this here as an example of what NOT to say. RTFM is NOT part of the language that will be tolerated here, if we want to keep a flame war out of our wiki; so please keep this in mind. And please don't jump to conclusions - several users still do not know about signing their entries! It seems to me the original poster was more positive than negative, so you could try and calmly answer to his questions, otherwise there's no reason in replying at all. This is NOT a debate room, and fights will NOT ('''NOT!''') be welcome here. You do not need to be apologetic (as you are in a couple of points) about anything that FutureOS may be lacking, since it's a wonderful system anyhow, but also taking it to the other extreme doesn't exactly help things either.&lt;br /&gt;
&lt;br /&gt;
::Best regards, &lt;br /&gt;
::[[User:Gryzor|Gryzor]] 16:02, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:::RTFM means Read The Futureos Manual, so where is the problem? That guy (without name) is allowed to vandalish my text? Why don't you stop him?&lt;br /&gt;
&lt;br /&gt;
:::Anyhow, and why don't talk about something other very unfair. At the left side, below &amp;quot;the present&amp;quot; there is a line for SymbOS, why not FutueOS. I would like to please you to insert that line.&lt;br /&gt;
&lt;br /&gt;
:::Greets&lt;br /&gt;
:::TFM&lt;br /&gt;
&lt;br /&gt;
::::Can we please stop hiding behind our finger? We all know what RTFM means, so please drop it. I assume almost everyone here is of at least average IQ... As I said, this languages is NOT permitted on board. What's more, what do you mean about that guy being allowed to vandalise your text? What did he vandalise? What should I stop? I think there might be a big misunderstanding here... Anyhow, about the SIdebar, I don't think it's 'very unfair', as I've explained before. FutureOS may be indeed very, very nice a project and I find myself playing with it the whole time, but SymbOS, with the existing Symbiface, has long ago reached critical mass and is very impressive and popular, that's why it had its own link. This is NOT an issue of 'put my project up there along with the others', it's trying to organise things in a better way. In any case, the Sidebar was changed a lot, I'm going to look into it... [[User:Gryzor|Gryzor]] 08:16, 11 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:That's something, which came to my mind very often! We should change the &amp;quot;SymbOS&amp;quot; link in the left menu to &amp;quot;Operating Systems&amp;quot;. Then we can have a list of OSs for the CPC there. It would be a better entry point! --[[User:Octoate|Octoate]] 20:40, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Hm, I don't know. In this case you have to place all categories from the &amp;quot;serious software&amp;quot; articel in the sidebar. -- [[User:Prodatron|Prodatron]] 21:00, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Argh... ;) --[[User:Octoate|Octoate]] 21:24, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
== What's about respecting some rules? ==&lt;br /&gt;
&lt;br /&gt;
As this is not Wikipedia but our own scene CPCWiki, I wouldn't like to force the articles to follow strict rules, but at least the following two rules should be respected by everyone:&lt;br /&gt;
* no advertisment-like phrases&lt;br /&gt;
* no false information&lt;br /&gt;
&lt;br /&gt;
The following parts in this article should be removed and replaced in a section like &amp;quot;possible plans for the future&amp;quot;:&lt;br /&gt;
* IDE support (mentioned several times, and first I mixed v8 with v9, but as it should only be a possible part of v9 [and now even v8 isn't released], it will not be implemented before 2007 or later, right?)&lt;br /&gt;
* CPC Booster support (you can't call an entry in the port monitor &amp;quot;support&amp;quot;)&lt;br /&gt;
* Multi tasking (I couldn't find any references)&lt;br /&gt;
If I am wrong, and these features are already implemented in FutureOS and ready for download, please provide us a link.&lt;br /&gt;
&lt;br /&gt;
Some other parts should also be removed:&lt;br /&gt;
* One-drive restriction of other OSs (nearly every OS can do this, even Amsdos allows drive letters in a path)&lt;br /&gt;
* Advertisment-like phrases (e.g. &amp;quot;FutureOS is for programmers who want to use the CPC at its limits&amp;quot; and other ones; these should be better placed on a homepage but not in a Wiki)&lt;br /&gt;
-- [[User:Prodatron|Prodatron]] 00:05, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I sense a scene fight coming on, I'm afraid... I do not wish to take any part in it, especially since I do not know anything about the common history of projects, but I hope it stays off the wiki!&lt;br /&gt;
::Well, in general it is quite easy to follow some necessary rules, so I am not afraid about fights. -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I'll have to agree with some of Prodatron's remarks. The article needs heavy editing (I have altered several points myself, more is needed) so as to not appear as a commercial for FutureOS but more like an objective article. Also, at points it becomes more of a manual than an article on the OS itself.&lt;br /&gt;
&lt;br /&gt;
:That said, even in Symbiface there was the phrase: ''It provides nearly everything you need to change your CPC into a powerful work station!'' which is more of the same :)&lt;br /&gt;
::Yes, that's right. I think someone just copied &amp;amp; pasted this from the homepage ;) -- [[User:Prodatron|Prodatron]] 10:24, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:To get back to Prodatron's remarks, if his points are valid the article should be corrected. If ''system .9'', as it is called in the article, indeed refers to FutureOS v9 then I also think that it should be re-written, especially since not even v8 has been released (really looking forward to it!).&lt;br /&gt;
&lt;br /&gt;
:In general, I would urge '''ALL''' contributors who are also developers, to try and keep their usual enthusiasm (read: ego ;) ) at a low, since we are trying to do an objective work and not promote one or the other product... Thanks! [[User:Gryzor|Gryzor]] 09:47, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I have cleaned up the whole artice, removed advertisment-like phrases, re-wrote sentences that sounded too much like advertising and thigthened the language. Articles should contain no false or biased statements in any form. Keep it clear, true, neutral and objective. This is what I tried to accomplish when editing this article.&lt;br /&gt;
- 2006-08-09; Gwildor -&lt;br /&gt;
:Thanks for your effort Gwildor! The article looks a bit more polished now. --[[User:Octoate|Octoate]] 14:07, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
I think the maximum file size currently is 512KB (19bit). I couldn't find any possibilities to load data from files, which are bigger than 512KB. Why is 16MB/24bit mentioned in the article? Also a planned feature for the future? -- [[User:Prodatron|Prodatron]] 17:02, 9 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
The maximum file-size depends on the free space on disc-hard-disc or it is limited by a 24 Bit file-length code. Just look at the manual. You can use routines like TEILA or TEISI to load or save files greater then 576 KB. TFM&lt;br /&gt;
&lt;br /&gt;
== Looks good now ==&lt;br /&gt;
&lt;br /&gt;
Thanx to everybodys' effort the article looks a lot better now. I wouldn't call &amp;quot;CPC Booster support&amp;quot; like this, but who cares. What's about summarising some very small sections and maybe removing some user-manual-like sentences? -- [[User:Prodatron|Prodatron]] 17:44, 10 August 2006 (CEST)&lt;br /&gt;
:Sumarised all sections which contained only 1 or 2 sentences and removed the FioLib text in its own article. -- [[User:Prodatron|Prodatron]] 19:16, 10 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
Thank you for your excellent help. TFM&lt;br /&gt;
&lt;br /&gt;
== Protection ==&lt;br /&gt;
&lt;br /&gt;
This part of the discussion has been deleted; please do not roll back.&lt;br /&gt;
&lt;br /&gt;
The reason I deleted it is because it turned into a flame, and also because some people do not understand how to format their edits by using semi-colons to keep the thread flow easy to understand. As a result it was a flame that was very hard to follow. I will just keep the following:&lt;br /&gt;
&lt;br /&gt;
The article will remain locked for the time being. It's really unfortunate that events are taking such a turn, at a time when the wiki is expanding at a good rate, which means that someone will have to keep an eye on all that is being written. Let's see if the discussion cools down a bit, then decide. &lt;br /&gt;
&lt;br /&gt;
That said, the initial article and subsequent edits were nothing less than shameless plugs for FutureOS. If you want to publish a plug, put it on your Profile page -- '''provided you create one''' and that you do not post anonymously! Why is it so darn hard to understand this??? [[User:Gryzor|Gryzor]] 19:42, 29 August 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
How to plug for something, which costs no money?&lt;br /&gt;
&lt;br /&gt;
:: I can also get different religions for free, nevertheless I want that someone tells me in a fundamentalistic way why his religion is best. The fact that something is free doesn´t mean that the wiki rules don´t have to be respected.&lt;br /&gt;
&lt;br /&gt;
::: Right! So respect your own rules. Maybe the article wasn't ideal for wiki at first. But better an article that could be corrected than nothing to read. And the comparison about religion is very low under my level.&lt;br /&gt;
&lt;br /&gt;
== Flaming ==&lt;br /&gt;
&lt;br /&gt;
Will it be possible, to stop flaming around that future os thing? I hate it to see people fighting for nothing :D&lt;br /&gt;
So maybe it will be the best to protect the whole article and the talk-area to stop annoying and useless posts from both parties [[User:Kangaroo|Kangaroo MusiQue of HJT]] 14:06, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Well, but who started the flaming? ;-)) [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;oldid=2154], [http://www.cpcwiki.eu/index.php?title=Talk:FutureOS&amp;amp;diff=4395&amp;amp;oldid=4393] I think at least the talk page shouldn't be protected, otherwise I am afraid, that it will continue on the general discussion page. -- [[User:Prodatron|Prodatron]] 15:02, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: :-) It was just my first reaction on the original-article as i read it. And that where logical questions, after reading an advertisement-text on the wiki for a &amp;quot;ultimate OS&amp;quot; with the best-features around, wich doesnt exist anyway in this form :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 20:31, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Yes the flaming is stupid. That's why the article was locked, but I think that talk pages should really rarely be locked... indeed, if one wants, it's very difficult, if not impossible, to keep them from flaming one way or the other. [[User:Gryzor|Gryzor]] 17:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: You (Kangaroo) and Rode start the flaming. So you BOTH have to stop it. Nobody else is flaming around. TFM&lt;br /&gt;
:: So that is NOT true.. i just mentioned, that future os must be a very great thing and much better than other OSses around, cause your text telled me, that FOS supports any device plugged in without needing a driver and so on. As Rode has written, that he has tried to work with FOS and found things out that arent true within your advertisement text, and after his new FOSuggestion-article looks much better than the original from TFM, i personally think, that i shall call you Monster-Marketing-Machinae (MMM) to keep the traditions :-) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 08:02, 8 September 2006 (CEST)&lt;br /&gt;
::: Well, what Rode has told here are just lies. Everybody can easiely proove this. I never sayd &amp;quot;any device&amp;quot;, I sayd &amp;quot;much devices&amp;quot; - and that is true. Please don't talk about things you have never used. Why? If you ever had used FutureOS, you wouldn't argue that way. And about marketing, I don't want to earn money with FutureOS. Look at your cmo homepage and you see what is MMM! [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Unlocking the FutureOS article ==&lt;br /&gt;
&lt;br /&gt;
Since many changes have been introcuced in this article, which aren't true, this article should be unlocked again - at least for me, the originatior of FutureOS. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:: The Problem about that is, that YOU arent telling the truth about the features of your OS and make the article an advertisement. So IMHO its better to let others write about the FOS, so its more near reality :-) Nothing personal against you, but it looks like, that you are a bit to enthusiastic with your own shit :) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
::: Stop! I must admit that the first version of the article was a copy of an article I wrote for an english papermag, because I had not the time to do all the work again. But I NEVER wrote something untrue here. If you don't know FutureOS like me, then you should ask first, instead of flaming around. I'm very sorry that you can't be objective. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
:::: Somehow his stamina is impressive - or lets say very psycho. I think no one else would &amp;quot;fight&amp;quot; so hard for a 15 years old and completely outdated project today even in the retro scene, as it is one of the worst software examples of the old days. Regarding the &amp;quot;truth&amp;quot;, even the actual article is not true and the first one was just a cheeky piece of advertisement. Please have a look at the new version, it could be a better base. Sad that this strange guy with his bizarre bunch of routines is the only one, who behaves negative in the CPCWiki. - [[User:Rode]]&lt;br /&gt;
&lt;br /&gt;
Ahh.. and GO get a WIKI-Account instead of posting the shit anonymous its NOT SO HARD, it DOESNT HURT and it will HELP others to see your GOOD WILL (or your willy) [[User:Kangaroo|Kangaroo MusiQue of HJT]] 19:25, 5 September 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: Finally he found out, how to create an account. But it seems, that he still has to learn a lot of more things, like the behaviour in talk pages etc. It's interesting, that this is the only problematic article in the whole wiki, but as I could see it was always the same with this person in the CPC history. As we know, that he will rollback the article into its original advertisement form, it shouldn't be unlocked for sure. I wrote a more objective version of the article some days ago, and I will suggest it shortly. [[User:Rode|Rode]]&lt;br /&gt;
&lt;br /&gt;
See [[FutureOS/Suggestion1]]&lt;br /&gt;
&lt;br /&gt;
Dear Rode don't talk about behaviour, because yours is pretty bad. As bad as your suggestion about the FutureOS article.&lt;br /&gt;
It is known that you don't like FutureOS, this is the reaseon why this article is problematic. Now we have the same problems here like in german Wikipedia before - thanks to you! I would greatly apprecialte if you could leave us here. Only without you it is possible to make this article better, this would help us all. If you have personal problems with FutureOS (or me) then this here is NOT the place for your personal war. [[TFM]]&lt;br /&gt;
&lt;br /&gt;
== Silicon Storm ==&lt;br /&gt;
&lt;br /&gt;
Silicon Storm... What is it?&amp;amp;nbsp;Never heard about before?&amp;amp;nbsp;&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Links&amp;diff=27948</id>
		<title>Links</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Links&amp;diff=27948"/>
				<updated>2008-12-01T18:46:23Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Typo and deleted some commercial spam... (Kick the user &amp;quot;Stinky&amp;quot; please...)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Software-related  ====&lt;br /&gt;
&lt;br /&gt;
*[http://www.cpczone.net CPC Zone] Home of the Gamebase, the ultimate collection of information (with screenshots, coverscans, reviews etc) on all games CPC. Also home of the Zone Forum. &lt;br /&gt;
*[http://www.phenixinformatique.com PhenixInformatique] French forum and much more(French) &lt;br /&gt;
*[http://tacgr.emuunlim.com/ The Amstrad Computer Game Resource] &lt;br /&gt;
*[http://www.amstrad.es/ Amstrad ESP (ES)] All about the Spanish software for CPC. RUA Magazine and ESP Soft links. &lt;br /&gt;
*[http://www.cpcgamereviews.com/ CPC Game Reviews] - CPC Game Reviews is a website which, as its name suggests, contains reviews of games for the Amstrad CPC computer - hundreds of them, in fact. It also contains a collection of advertisements which have been scanned from Amstrad CPC magazines. &lt;br /&gt;
*[http://computeremuzone.com/amstrad/ Amstrad Zone] &lt;br /&gt;
*[http://www.prodatron.net/ Prodatron's page] ([[Prodatron|Prodatrons]] homepage includes the infos and downloads of his productions as well as a lot of downloads for CPC Digitracker modules (MDL), OCP Art Studio pictures and Scene demos) &lt;br /&gt;
*[http://bestofcpc.webcindario.com/ Best of CPC] (ES) &lt;br /&gt;
*[http://arkos.cpcscene.com/ Arkos Demogroup] - The page of [[Arkos|Arkos]], with some great demos, diskmags, games and tools. &lt;br /&gt;
*[http://www.cpc-hardware.com/ CPC Hardware] - (F) Forum, nice downloads, hardware projects; also an online store for hardware stuff like [[RS232|RS232]] interfaces etc. &lt;br /&gt;
*[http://www.FutureOS.de/ FutureOS homepage] &lt;br /&gt;
*[http://cpcgamescd.cpcwiki.eu/ CPCGamesCD homepage] &lt;br /&gt;
*[http://optimus.demoscene.gr/cpcscene/ The CPC Demoscene] Optimus website about the CPC demoscene with a list of some of the best CPC demos with reviews and screenshots. &lt;br /&gt;
*[http://amstrad.cpc.free.fr Amstradeus] Lots of interviews, manuals for download and much more. (French)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Hardware-related  ====&lt;br /&gt;
&lt;br /&gt;
*[http://www.symbos.de SymbOS] (includes the website of the two new hardware projects [[SYMBiFACE II|SYMBiFACE II]] and [[CPC TREX|CPC TREX]]) &lt;br /&gt;
*[http://www.terra.es/personal/diegovp Various Amstrad stuff] - Including instructions on how to fit or connect a 3.5&amp;quot; drive, hot to connect your CPC to your PC and how to transfer files, among others. &lt;br /&gt;
*[http://www.cpc-hardware.com/ CPC Hardware] - (F) Forum, nice downloads, hardware projects; also an online store for hardware stuff like [[RS232|RS232]] interfaces etc. &lt;br /&gt;
*[http://www.zock.com/8-Bit/D_CPCguide.HTML G.o.St.-SOFT's CPC-Hardwareführer at 8-Bit-Nirvana (German)] &lt;br /&gt;
*[http://8bit.yarek.pl/index.html 8bit Projects for Everyone] - Hardware updates for 8-bit computers, also for CPC. &lt;br /&gt;
*[http://www.amstradtoday.com/ Amstrad Today] - Many Tips for Amstrad CPC&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Document resources  ====&lt;br /&gt;
&lt;br /&gt;
*[http://www.cepece.info/amstrad Unofficial WWW Amstrad Resource]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== FTP sites  ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*[ftp://ftp.nvg.unit.no/pub/cpc/ NVG] &lt;br /&gt;
*[ftp://ftp.cmo.de/pub/Computer/Amstrad_CPC CMO.de] - Games, Meeting pictures, manuals, etc. &lt;br /&gt;
*[ftp://ftp.demon.co.uk/pub/cpm/ CPM] - related Amstrad things&lt;br /&gt;
&lt;br /&gt;
==== Commercial sites  ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== User Groups  ====&lt;br /&gt;
&lt;br /&gt;
*[news://comp.sys.amstrad.8bit CSA8] &lt;br /&gt;
*[http://www.cpczone.net/boards CPC Zone Forum]: The most popular and active (? maybe some french forum is more active) forum on the net. &lt;br /&gt;
*[http://www.cpc-forum.de CPC-Forum.de]: The new most important discussion forum for the German-speaking part of the CPC scene. &lt;br /&gt;
*[http://www.wacci.org.uk/ WACCI] (Worldwide Amstrad Computer Club Incorporated) - WACCI was a UK based user group that supported the Amstrad CPC computer. It was a subscription-only, printed English magazine published bi-monthly and available throughout the world. The current issues of the magazine are now reproduced on this website. &lt;br /&gt;
*[irc://irc.freenode.net/#cpc IRC-channel] #cpc on irc.freenode.net (a big IRC-network), one cpc-channel among many others out there on various networks.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Emulators  ====&lt;br /&gt;
&lt;br /&gt;
*[http://www.arnoldemu.freeserve.co.uk/ Arnold] (WIN | MAC | LINUX) &lt;br /&gt;
*[http://xport.xbox-scene.com/ ArnoldX] (XBOX) &lt;br /&gt;
*[http://www.classicgaming.com/caprice/ Caprice] (WIN) &lt;br /&gt;
*[http://copacabana.emuunlim.com/ CoPaCabana] (WIN | PALM) &lt;br /&gt;
*[http://www.trans-it.de/cordes/amstrad/cpcemu.html CPCEmu] &lt;br /&gt;
*[http://www.amstrad-cpc.de CPC4X] &lt;br /&gt;
*[http://cpce.emuunlim.com CPCE] &lt;br /&gt;
*[http://icerive.free.fr/cpc Ice Rive] &lt;br /&gt;
*[http://sourceforge.net/projects/javacpc JavaCPC]&amp;amp;nbsp;Amstrad CPC Emulator in Java by Devilmarkus (based on JEMU) &lt;br /&gt;
*[http://jemu.winape.net JEMU] (Multi-System Java) &lt;br /&gt;
*[http://amstrad.cpc.free.fr PC-CPC] by Ludovic Deplanque(Demoniak) &lt;br /&gt;
*[http://www.winape.net WinApe] &lt;br /&gt;
*[http://www.wincpc.ch WinCPC]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Others  ====&lt;br /&gt;
&lt;br /&gt;
*[http://thesnakebecomesthekey.wordpress.com/ The Snake Becomes the Key] is a very nicely-written blog with reviews and thoughts on various CPC games. Very well done but not updated any more. &lt;br /&gt;
*[http://cpcoxygen.fxwebdevelopment.com/ CPC Oxygen] - home of the same-name great fanzine and AA scan repository. Not updated in a long time. &lt;br /&gt;
*[http://genesis8.free.fr/index.php Genesis 8] - Genesis 8 is a spartan, but often-updated Amstrad-related news site. &lt;br /&gt;
*[http://www.cpcscene.com/ CPC Scene] - Various stuff. Of much interest: The [http://radio.cpcscene.com/ CPC online radio station]! &lt;br /&gt;
*[http://cpcrulez.free.fr/ CPC Rulez] ([http://cpcrulez.2ya.com/ Alternative Link]) (FR) A great french site, updated frequently, with software reviews, utilities, games, demos, hardware info. A treasure and a must-visit if you speak french (though not necessarily so). &lt;br /&gt;
*[http://www.frappr.com/cpcscene/ CPC scene map] &lt;br /&gt;
*[http://www.cepece.info/ CePeCe.info] (ES) - Spanish CPC portal and web-hosting facilities for your CPC webpage. &lt;br /&gt;
*[http://cpccrackers.free.fr CPCCRACKERS] - French site about crackers for the CPC. &lt;br /&gt;
*[http://www.cpc6128.eu CPC 6128 Europe] - European portal. &lt;br /&gt;
*[http://www.octoate.de Octoate.de] - English site which features news, some articles and meeting pictures. &lt;br /&gt;
*[http://www.geocities.com/cpm22_user/programs/Amstrad_CPC/TurboPAS/ Programming Turbo Pascal on a CPC!] - A collection of Turbo Pascal programs with some CPC Specific programs. &lt;br /&gt;
*[http://www.oldschool-gaming.com/view_index.php?4mat=9 Oldschool gaming] - Games reviews of recent games for the CPC!&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=HJT&amp;diff=27947</id>
		<title>HJT</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=HJT&amp;diff=27947"/>
				<updated>2008-12-01T18:40:52Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''HJT''' stands for &amp;quot;'''H'''a'''J'''emara-'''T'''eam&amp;quot; (where Hajemara is an abbreviation of &amp;quot;'''Ha'''ns, '''Je'''nny and '''Ma'''nfred '''Ra'''dtke&amp;quot;). Not a typical scene group. In the foreground the HJT always was similar to a big family. The simple reason was that the founders (Marabu, Crittersoap and Hiroyuki) of the group in reality were members of one family. Later the &amp;quot;family&amp;quot; grew and the HJT was one of the biggest and most productive german groups. The HJT became famous with it´s paperfanzine called [[Rundschlag]]. It was the most succesful CPC related papermag ever in Germany and also spread very well over the rest of the world. &lt;br /&gt;
&lt;br /&gt;
== HJT members ==&lt;br /&gt;
&lt;br /&gt;
* [[Borax]]&lt;br /&gt;
* [[Crittersoap]] ('''Ha'''ns)&lt;br /&gt;
* [[Hexenmeister]]&lt;br /&gt;
* [[Hiroyuki]] ('''Je'''nny)&lt;br /&gt;
* [[Kangaroo MusiQue]]&lt;br /&gt;
* [[Knutschfleck]]&lt;br /&gt;
* [[K-OS]]&lt;br /&gt;
* [[Marabu]] ('''Ma'''nfred '''Ra'''dtke)&lt;br /&gt;
* [[Odiesoft]]&lt;br /&gt;
* [[Overload]]&lt;br /&gt;
* [[Villain]]&lt;br /&gt;
* [[Woodman]]&lt;br /&gt;
&lt;br /&gt;
== HJT projects  ==&lt;br /&gt;
&lt;br /&gt;
*[[FBI|FBI]] (Fanzine Backbone International) &lt;br /&gt;
*[[Lamers International|Lamers International]] (German satire cpc-fanzine) &lt;br /&gt;
*[[Lameculos|Lameculos]] (Never released Disczine) &lt;br /&gt;
*[[Rundschlag|Rundschlag]] (Famous Papermagazine in german, french and english) &lt;br /&gt;
*HJT-Intern (Paper-Mag for the internal issues of HJT)&lt;br /&gt;
&lt;br /&gt;
== HJT weblinks ==&lt;br /&gt;
* [http://www.kangaroo.cmo.de Kangaroo's Homepage]&lt;br /&gt;
* [http://www.odiesoft.de Odiesoft's Homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:Scene group]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Die_Drei_Len%3F%3F%C2%3Fre&amp;diff=27919</id>
		<title></title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Die_Drei_Len%3F%3F%C2%3Fre&amp;diff=27919"/>
				<updated>2008-11-30T15:58:39Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Lenoere-logo.jpg|thumb|Die Drei Lenöre-Logo]] '''Die Drei Lenöre''' is a - in our opinion - funny music-project, where four members of the CPC scene are involved in: &lt;br /&gt;
&lt;br /&gt;
*[[Kangaroo MusiQue|Kangaroo MusiQue]] (As the maniac music maker (MMM)) &lt;br /&gt;
*[[Octoate|Octoate]] (for singing, dancing and writing lyrics) &lt;br /&gt;
*[[Villain|Villain]] (for singing, writing lyrics and making videos) &lt;br /&gt;
*[[Prodatron|Prodatron]] (for being the only '''real''' fan&amp;amp;nbsp;:)&lt;br /&gt;
&lt;br /&gt;
Almost everything is in german, so it may be hard to read (and to listen). The first releases contained a lot of CPC-related material, what really changed over the last years. The lyrics now deal with very different topics. &lt;br /&gt;
&lt;br /&gt;
== Weblinks  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.lenoere.de Die Drei Lenöre] &lt;br /&gt;
*[http://blog.lenoere.de The blog of Die Drei Lenöre]&lt;br /&gt;
&lt;br /&gt;
[[Category:Music_and_sound]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2008&amp;diff=27479</id>
		<title>XzentriX Meeting 2008</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=XzentriX_Meeting_2008&amp;diff=27479"/>
				<updated>2008-09-18T20:33:12Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Added some visitors...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''[[XzentriX|XzentriX]] 2008''' took place september 2008 in Seeshaupt, Germany, and was - as always - organised by [[Mr. Ams|Mr. Ams]] and Robert Sterff. As usual it was a party for all old (8bit) computers from the 70ies, 80ies and early 90ies. Under the participians there was again a very high amount of CPC scene members. &lt;br /&gt;
&lt;br /&gt;
== Participiants  ==&lt;br /&gt;
&lt;br /&gt;
*[[Brainblaster|Brainblaster]] &lt;br /&gt;
*[[Dr.Zed|Dr.Zed]] &lt;br /&gt;
*[[Kangaroo MusiQue|Kangaroo MusiQue]] &lt;br /&gt;
*[[Mr.Ams|Mr.Ams]] &lt;br /&gt;
*[[Nilquader|Nilquader]] &lt;br /&gt;
*[[Nurgle|Nurgle]] &lt;br /&gt;
*[[Odiesoft|Odiesoft]] &lt;br /&gt;
*[[Odin|Odin]] &lt;br /&gt;
*[[Prodatron|Prodatron]] &lt;br /&gt;
*[[TFM|TFM]] &lt;br /&gt;
*[[Tolkin|Tolkin]] &lt;br /&gt;
*[[Villain|Villain]]&lt;br /&gt;
&lt;br /&gt;
== Picture galleries  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.odiesoft.de/galleries/xzentrix2008/xzentrix2008.html Pictures at Odiesofts' homepage]&lt;br /&gt;
&lt;br /&gt;
== Web links  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.xzentrix.de XzentriX homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=23468</id>
		<title>Bergtreffen 2008</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=23468"/>
				<updated>2008-05-01T06:21:17Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Will take place from 16th to 18th May in Erlangen/Germany.&lt;br /&gt;
&lt;br /&gt;
== Expected participants ==&lt;br /&gt;
&lt;br /&gt;
* [[Brainblaster]]&lt;br /&gt;
* [[Dr.Zed]]&lt;br /&gt;
* Gadget&lt;br /&gt;
* [[Gert Genial]]&lt;br /&gt;
* [[Jammet]]&lt;br /&gt;
* [[Kangaroo MusiQue]]&lt;br /&gt;
* [[Mr.Ams]]&lt;br /&gt;
* [[Nilquader]]&lt;br /&gt;
* [[Prodatron]]&lt;br /&gt;
* [[Tolkin]]&lt;br /&gt;
* [[TFM]]&lt;br /&gt;
* [[Villain]]&lt;br /&gt;
&lt;br /&gt;
== Picture Galleries ==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]] [[Category:Stub]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:Bergtreffen_2008&amp;diff=22821</id>
		<title>Talk:Bergtreffen 2008</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:Bergtreffen_2008&amp;diff=22821"/>
				<updated>2008-04-03T18:10:34Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: New page: &amp;amp;nbsp;Hat s´Gadget denn auch schon einen CPC? :-D&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;amp;nbsp;Hat s´Gadget denn auch schon einen CPC? :-D&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=22820</id>
		<title>Bergtreffen 2008</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=22820"/>
				<updated>2008-04-03T18:09:27Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: It will not probably take place, it will take place. :-)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Will take place from 16th to 18th May in Erlangen/Germany.&lt;br /&gt;
&lt;br /&gt;
== Expected participants ==&lt;br /&gt;
&lt;br /&gt;
* [[Brainblaster]]&lt;br /&gt;
* [[Dr.Zed]]&lt;br /&gt;
* Gadget&lt;br /&gt;
* [[Jammet]]&lt;br /&gt;
* [[Kangaroo MusiQue]]&lt;br /&gt;
* [[Mr.Ams]]&lt;br /&gt;
* [[Nilquader]]&lt;br /&gt;
* [[Prodatron]]&lt;br /&gt;
* [[Tolkin]]&lt;br /&gt;
* [[TFM]]&lt;br /&gt;
* [[Villain]]&lt;br /&gt;
&lt;br /&gt;
== Picture Galleries ==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]] [[Category:Stub]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=21879</id>
		<title>Bergtreffen 2008</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Bergtreffen_2008&amp;diff=21879"/>
				<updated>2008-03-18T18:50:38Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: New page: Will probably take place from 16th to 18th May in Erlangen/Germany.  == Expected participants ==  * Brainblaster * Dr.Zed * Kangaroo MusiQue * Mr.Ams * Nilquader * [[Pr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Will probably take place from 16th to 18th May in Erlangen/Germany.&lt;br /&gt;
&lt;br /&gt;
== Expected participants ==&lt;br /&gt;
&lt;br /&gt;
* [[Brainblaster]]&lt;br /&gt;
* [[Dr.Zed]]&lt;br /&gt;
* [[Kangaroo MusiQue]]&lt;br /&gt;
* [[Mr.Ams]]&lt;br /&gt;
* [[Nilquader]]&lt;br /&gt;
* [[Prodatron]]&lt;br /&gt;
* [[Tolkin]]&lt;br /&gt;
* [[Villain]]&lt;br /&gt;
&lt;br /&gt;
== Picture Galleries ==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC_events]] [[Category:Stub]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPC_parties&amp;diff=21878</id>
		<title>CPC parties</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPC_parties&amp;diff=21878"/>
				<updated>2008-03-18T18:42:53Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of CPC scene parties, which took place or will take place in different countries.&lt;br /&gt;
&lt;br /&gt;
== Upcoming CPC parties and CPC related events ==&lt;br /&gt;
&lt;br /&gt;
* [[RetroEuskal 2007]] - July 20. - 23. of 2007 (Bilbao, Spain)&lt;br /&gt;
* Bergstreffen - May 16. - 18. of 2008 (Erlangen, Germany)&lt;br /&gt;
&lt;br /&gt;
== CPC parties in the past ==&lt;br /&gt;
&lt;br /&gt;
''Please use the chronological order also inside one year.''&lt;br /&gt;
&lt;br /&gt;
=== France ===&lt;br /&gt;
&lt;br /&gt;
* '''1990'''&lt;br /&gt;
** [[Euromeeting 0]] - Stains (93)&lt;br /&gt;
** [[Amstrad Expo 1990]]&lt;br /&gt;
&lt;br /&gt;
* '''1992'''&lt;br /&gt;
** [[AFC Expo 1]] - Antony (92)&lt;br /&gt;
** [[Euromeeting 2]] - Reims (51)&lt;br /&gt;
** [[Bordelik Meeting I]] - Mouazé (35)&lt;br /&gt;
** [[Bordelik Meeting II]] - La Ferté Bernard (72)&lt;br /&gt;
&lt;br /&gt;
* '''1993'''&lt;br /&gt;
** [[Bordelik Meeting III]] - Bethune (62)&lt;br /&gt;
&lt;br /&gt;
* '''1995'''&lt;br /&gt;
** [[Freedelire Meeting]] - Bapaume (62)&lt;br /&gt;
** [[Bugs Party 3]] - Masnière (59)&lt;br /&gt;
** [[Bordelik Meeting IV]] - Monterfil (35)&lt;br /&gt;
** [[Ze Meeting 1995]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''1996'''&lt;br /&gt;
** [[Ovl 96]] - Savigny-le-Temple (77)&lt;br /&gt;
** [[Byte'96]] - Oye-Plage (62)&lt;br /&gt;
** [[Ze Meeting 1996]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''1997'''&lt;br /&gt;
** [[Ze Meeting 1997]] - Castelmaurou (31)&lt;br /&gt;
&lt;br /&gt;
* '''1998'''&lt;br /&gt;
** [[Byte'98]] - Marck (62)&lt;br /&gt;
** [[Camembert Meeting 4]] - Drubec (14)&lt;br /&gt;
&lt;br /&gt;
* '''1999'''&lt;br /&gt;
** [[Byte'99]] - Marck (62)&lt;br /&gt;
** [[Ze Meeting 1999]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°1]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2000'''&lt;br /&gt;
** [[Amstrad Expo 2000]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2000]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°2]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2001'''&lt;br /&gt;
** [[Amstrad Expo 2001]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2001]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°3]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2002'''&lt;br /&gt;
** [[Amstrad Expo 2002]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2002]] - Bassoues (32)&lt;br /&gt;
** [[Bordelik Meeting V]] - Rennes (35)&lt;br /&gt;
&lt;br /&gt;
* '''2003'''&lt;br /&gt;
** [[Amstrad Expo 2003]] - Coutances (50)&lt;br /&gt;
** [[Ovl 2003]] - Savigny-le-Temple (77)&lt;br /&gt;
** [[Ze Meeting 2003]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''2004'''&lt;br /&gt;
** [[Amstrad Expo 2004]] - Coutances (50)&lt;br /&gt;
** [[Improvized Meeting]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2004]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''2005'''&lt;br /&gt;
** [[Amstrad Expo 2005]] - Coutances (50)&lt;br /&gt;
** [[CPCinoche]] - Ploërmel (56)&lt;br /&gt;
** [[Ze Meeting 2005]] - Bassoues (32)&lt;br /&gt;
** [[CPC At Work]] - Coutances (50)&lt;br /&gt;
&lt;br /&gt;
* '''2006'''&lt;br /&gt;
** [[Ze Meeting 2006]] - Bassoues (32)&lt;br /&gt;
** [[Castelum Secretum Meeting]] - October 27th, 28th, 29th of 2006 - Segré (49)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* '''2007'''&lt;br /&gt;
** [[Croco Chanel N°4]] - (60) [http://cc4.cpcscene.com More informations about Croco Chanel #4] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ''Unknown year''&lt;br /&gt;
** [[Bugs Meeting 2]]&lt;br /&gt;
&lt;br /&gt;
=== Germany ===&lt;br /&gt;
&lt;br /&gt;
* '''1989''' &lt;br /&gt;
** [[GOS I]] (Bad Hersfeld)&lt;br /&gt;
* '''1990''' &lt;br /&gt;
** [[GOS II]] (Bad Hersfeld)&lt;br /&gt;
* '''1991''' &lt;br /&gt;
** [[Cebit '91]] (Hannover)&lt;br /&gt;
** [[Euromeeting 1]] (Osnabrück)&lt;br /&gt;
** [[GOS III]] (Bad Hersfeld)&lt;br /&gt;
* '''1992''' &lt;br /&gt;
** [[Cebit '92]] (Hannover)&lt;br /&gt;
** [[Castle Party 1]] (Castle Sommershausen)&lt;br /&gt;
** [[HJT Mini Meeting 1]] (Castle Sommershausen)&lt;br /&gt;
** [[Marabu Meeting 1992]] (Ulm)&lt;br /&gt;
** [[GOS IV]] (Bad Hersfeld)&lt;br /&gt;
** [[Xmas 1992 Party]] (?)&lt;br /&gt;
* '''1993''' &lt;br /&gt;
** [[Cebit '93]] (Hannover)&lt;br /&gt;
** [[Castle Party 1a]] (Castle Sommershausen)&lt;br /&gt;
** [[Euromeeting 3]] (Wuppertal)&lt;br /&gt;
** [[GOS V]] (Bad Hersfeld)&lt;br /&gt;
** [[Dreamer Party]] (Münster)&lt;br /&gt;
* '''1994''' &lt;br /&gt;
** [[Cebit '94]] (Hannover)&lt;br /&gt;
* '''1995''' &lt;br /&gt;
** [[G.o.St.-SOFT Meeting 1]] (July) (Oldenburg)&lt;br /&gt;
** [[Inicron Party]] (?)&lt;br /&gt;
** [[Odiesoft Party 1]] (Aalen)&lt;br /&gt;
** [[SCUG Meeting]] (Munich)&lt;br /&gt;
** [[G.o.St.-SOFT Meeting 2]] (December) (Oldenburg)&lt;br /&gt;
** [[End Of 1995]] (Edewecht?)&lt;br /&gt;
* '''1996''' &lt;br /&gt;
** [[Trip 2 Future]] (Winnweiler)&lt;br /&gt;
* '''1997''' &lt;br /&gt;
** [[Future Soft Party]] (Munich)&lt;br /&gt;
** [[Odiesoft Party 2]] (Konstanz)&lt;br /&gt;
** [[Xmas Meeting]] (Erlangen)&lt;br /&gt;
* '''1999''' &lt;br /&gt;
** [[XzentriX Meeting 1999]] (Seeshaupt)&lt;br /&gt;
* '''2000''' &lt;br /&gt;
** [[XzentriX Meeting 2000]] (Seeshaupt)&lt;br /&gt;
* '''2001''' &lt;br /&gt;
** [[CPC Reunion 1]] (aka CPC Klassentreffen 2001) (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2001]] (Seeshaupt)&lt;br /&gt;
* '''2002''' &lt;br /&gt;
** [[CPC Reunion 2]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2002]] (Seeshaupt)&lt;br /&gt;
* '''2003''' &lt;br /&gt;
** [[COM I]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2003]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2003]] (Seeshaupt)&lt;br /&gt;
* '''2004''' &lt;br /&gt;
** [[COM II]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2004]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2004]] (Seeshaupt)&lt;br /&gt;
* '''2005''' &lt;br /&gt;
** [[SymbOS Preview party]] (Moers)&lt;br /&gt;
** [[COM III]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2005]] (Erlangen)&lt;br /&gt;
** [[Z-Fest 2005]] (Fuldatal-Knickhagen)&lt;br /&gt;
** [[XzentriX Meeting 2005]] (Seeshaupt)&lt;br /&gt;
* '''2006''' &lt;br /&gt;
** [[Burgparty 1]] (Kirchen)&lt;br /&gt;
** [[Castle Party 2006]] (Castle Sommershausen)&lt;br /&gt;
** [[VCFe 7]] (München)&lt;br /&gt;
** [[Bergtreffen 2006]] (Herzogenaurach/Erlangen)&lt;br /&gt;
** [[Z-Fest 2006]] (Fuldatal-Knickhagen)&lt;br /&gt;
** [[XzentriX Meeting 2006]] (Seeshaupt)&lt;br /&gt;
** [[Burgparty 2]] (Kirchen)&lt;br /&gt;
* '''2007''' &lt;br /&gt;
** [[Bergtreffen 2007|Bergtreffen_2007]] (Herzogenaurach/Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2007]] (Seeshaupt)&lt;br /&gt;
* '''2008''' &lt;br /&gt;
** [[Grillhüttenparty 2008|Grillhüttenparty_2008]] (Kirchen)&lt;br /&gt;
** [[Bergtreffen 2008]] (Erlangen)&lt;br /&gt;
&lt;br /&gt;
=== Spain ===&lt;br /&gt;
&lt;br /&gt;
* '''2004'''&lt;br /&gt;
** [[BCNParty 100]] (Barcelona)&lt;br /&gt;
* '''2005'''&lt;br /&gt;
** [[BCNParty 101]] (Barcelona)&lt;br /&gt;
** [[RetroEuskal 2005]] (Bilbao)&lt;br /&gt;
* '''2006'''&lt;br /&gt;
** [[BCNParty 110]] [http://www.bcnparty.org] (Barcelona)&lt;br /&gt;
** [[RetroEuskal 2006]] (Bilbao)&lt;br /&gt;
* '''2007'''&lt;br /&gt;
** [[MadriSX 2007]] (Madrid)&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC events|*]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPC_parties&amp;diff=21080</id>
		<title>CPC parties</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPC_parties&amp;diff=21080"/>
				<updated>2008-01-14T20:21:07Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of CPC scene parties, which took place or will take place in different countries.&lt;br /&gt;
&lt;br /&gt;
== Upcoming CPC parties and CPC related events ==&lt;br /&gt;
&lt;br /&gt;
* [[RetroEuskal 2007]] - July 20. - 23. of 2007 (Bilbao, Spain)&lt;br /&gt;
&lt;br /&gt;
== CPC parties in the past ==&lt;br /&gt;
&lt;br /&gt;
''Please use the chronological order also inside one year.''&lt;br /&gt;
&lt;br /&gt;
=== France ===&lt;br /&gt;
&lt;br /&gt;
* '''1990'''&lt;br /&gt;
** [[Euromeeting 0]] - Stains (93)&lt;br /&gt;
** [[Amstrad Expo 1990]]&lt;br /&gt;
&lt;br /&gt;
* '''1992'''&lt;br /&gt;
** [[AFC Expo 1]] - Antony (92)&lt;br /&gt;
** [[Euromeeting 2]] - Reims (51)&lt;br /&gt;
** [[Bordelik Meeting I]] - Mouazé (35)&lt;br /&gt;
** [[Bordelik Meeting II]] - La Ferté Bernard (72)&lt;br /&gt;
&lt;br /&gt;
* '''1993'''&lt;br /&gt;
** [[Bordelik Meeting III]] - Bethune (62)&lt;br /&gt;
&lt;br /&gt;
* '''1995'''&lt;br /&gt;
** [[Freedelire Meeting]] - Bapaume (62)&lt;br /&gt;
** [[Bugs Party 3]] - Masnière (59)&lt;br /&gt;
** [[Bordelik Meeting IV]] - Monterfil (35)&lt;br /&gt;
** [[Ze Meeting 1995]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''1996'''&lt;br /&gt;
** [[Ovl 96]] - Savigny-le-Temple (77)&lt;br /&gt;
** [[Byte'96]] - Oye-Plage (62)&lt;br /&gt;
** [[Ze Meeting 1996]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''1997'''&lt;br /&gt;
** [[Ze Meeting 1997]] - Castelmaurou (31)&lt;br /&gt;
&lt;br /&gt;
* '''1998'''&lt;br /&gt;
** [[Byte'98]] - Marck (62)&lt;br /&gt;
** [[Camembert Meeting 4]] - Drubec (14)&lt;br /&gt;
&lt;br /&gt;
* '''1999'''&lt;br /&gt;
** [[Byte'99]] - Marck (62)&lt;br /&gt;
** [[Ze Meeting 1999]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°1]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2000'''&lt;br /&gt;
** [[Amstrad Expo 2000]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2000]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°2]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2001'''&lt;br /&gt;
** [[Amstrad Expo 2001]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2001]] - Bassoues (32)&lt;br /&gt;
** [[Croco Chanel N°3]] - Catenoy (60)&lt;br /&gt;
&lt;br /&gt;
* '''2002'''&lt;br /&gt;
** [[Amstrad Expo 2002]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2002]] - Bassoues (32)&lt;br /&gt;
** [[Bordelik Meeting V]] - Rennes (35)&lt;br /&gt;
&lt;br /&gt;
* '''2003'''&lt;br /&gt;
** [[Amstrad Expo 2003]] - Coutances (50)&lt;br /&gt;
** [[Ovl 2003]] - Savigny-le-Temple (77)&lt;br /&gt;
** [[Ze Meeting 2003]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''2004'''&lt;br /&gt;
** [[Amstrad Expo 2004]] - Coutances (50)&lt;br /&gt;
** [[Improvized Meeting]] - Coutances (50)&lt;br /&gt;
** [[Ze Meeting 2004]] - Bassoues (32)&lt;br /&gt;
&lt;br /&gt;
* '''2005'''&lt;br /&gt;
** [[Amstrad Expo 2005]] - Coutances (50)&lt;br /&gt;
** [[CPCinoche]] - Ploërmel (56)&lt;br /&gt;
** [[Ze Meeting 2005]] - Bassoues (32)&lt;br /&gt;
** [[CPC At Work]] - Coutances (50)&lt;br /&gt;
&lt;br /&gt;
* '''2006'''&lt;br /&gt;
** [[Ze Meeting 2006]] - Bassoues (32)&lt;br /&gt;
** [[Castelum Secretum Meeting]] - October 27th, 28th, 29th of 2006 - Segré (49)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* '''2007'''&lt;br /&gt;
** [[Croco Chanel N°4]] - (60) [http://cc4.cpcscene.com More informations about Croco Chanel #4] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ''Unknown year''&lt;br /&gt;
** [[Bugs Meeting 2]]&lt;br /&gt;
&lt;br /&gt;
=== Germany ===&lt;br /&gt;
&lt;br /&gt;
* '''1989''' &lt;br /&gt;
** [[GOS I]] (Bad Hersfeld)&lt;br /&gt;
* '''1990''' &lt;br /&gt;
** [[GOS II]] (Bad Hersfeld)&lt;br /&gt;
* '''1991''' &lt;br /&gt;
** [[Cebit '91]] (Hannover)&lt;br /&gt;
** [[Euromeeting 1]] (Osnabrück)&lt;br /&gt;
** [[GOS III]] (Bad Hersfeld)&lt;br /&gt;
* '''1992''' &lt;br /&gt;
** [[Cebit '92]] (Hannover)&lt;br /&gt;
** [[Castle Party 1]] (Castle Sommershausen)&lt;br /&gt;
** [[HJT Mini Meeting 1]] (Castle Sommershausen)&lt;br /&gt;
** [[Marabu Meeting 1992]] (Ulm)&lt;br /&gt;
** [[GOS IV]] (Bad Hersfeld)&lt;br /&gt;
** [[Xmas 1992 Party]] (?)&lt;br /&gt;
* '''1993''' &lt;br /&gt;
** [[Cebit '93]] (Hannover)&lt;br /&gt;
** [[Castle Party 1a]] (Castle Sommershausen)&lt;br /&gt;
** [[Euromeeting 3]] (Wuppertal)&lt;br /&gt;
** [[GOS V]] (Bad Hersfeld)&lt;br /&gt;
** [[Dreamer Party]] (Münster)&lt;br /&gt;
* '''1994''' &lt;br /&gt;
** [[Cebit '94]] (Hannover)&lt;br /&gt;
* '''1995''' &lt;br /&gt;
** [[G.o.St.-SOFT Meeting 1]] (July) (Oldenburg)&lt;br /&gt;
** [[Inicron Party]] (?)&lt;br /&gt;
** [[Odiesoft Party 1]] (Aalen)&lt;br /&gt;
** [[SCUG Meeting]] (Munich)&lt;br /&gt;
** [[G.o.St.-SOFT Meeting 2]] (December) (Oldenburg)&lt;br /&gt;
** [[End Of 1995]] (Edewecht?)&lt;br /&gt;
* '''1996''' &lt;br /&gt;
** [[Trip 2 Future]] (Winnweiler)&lt;br /&gt;
* '''1997''' &lt;br /&gt;
** [[Future Soft Party]] (Munich)&lt;br /&gt;
** [[Odiesoft Party 2]] (Konstanz)&lt;br /&gt;
** [[Xmas Meeting]] (Erlangen)&lt;br /&gt;
* '''1999''' &lt;br /&gt;
** [[XzentriX Meeting 1999]] (Seeshaupt)&lt;br /&gt;
* '''2000''' &lt;br /&gt;
** [[XzentriX Meeting 2000]] (Seeshaupt)&lt;br /&gt;
* '''2001''' &lt;br /&gt;
** [[CPC Reunion 1]] (aka CPC Klassentreffen 2001) (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2001]] (Seeshaupt)&lt;br /&gt;
* '''2002''' &lt;br /&gt;
** [[CPC Reunion 2]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2002]] (Seeshaupt)&lt;br /&gt;
* '''2003''' &lt;br /&gt;
** [[COM I]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2003]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2003]] (Seeshaupt)&lt;br /&gt;
* '''2004''' &lt;br /&gt;
** [[COM II]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2004]] (Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2004]] (Seeshaupt)&lt;br /&gt;
* '''2005''' &lt;br /&gt;
** [[SymbOS Preview party]] (Moers)&lt;br /&gt;
** [[COM III]] (Frankfurt am Main)&lt;br /&gt;
** [[Bergtreffen 2005]] (Erlangen)&lt;br /&gt;
** [[Z-Fest 2005]] (Fuldatal-Knickhagen)&lt;br /&gt;
** [[XzentriX Meeting 2005]] (Seeshaupt)&lt;br /&gt;
* '''2006''' &lt;br /&gt;
** [[Burgparty 1]] (Kirchen)&lt;br /&gt;
** [[Castle Party 2006]] (Castle Sommershausen)&lt;br /&gt;
** [[VCFe 7]] (München)&lt;br /&gt;
** [[Bergtreffen 2006]] (Herzogenaurach/Erlangen)&lt;br /&gt;
** [[Z-Fest 2006]] (Fuldatal-Knickhagen)&lt;br /&gt;
** [[XzentriX Meeting 2006]] (Seeshaupt)&lt;br /&gt;
** [[Burgparty 2]] (Kirchen)&lt;br /&gt;
* '''2007''' &lt;br /&gt;
** [[Bergtreffen 2007|Bergtreffen_2007]] (Herzogenaurach/Erlangen)&lt;br /&gt;
** [[XzentriX Meeting 2007]] (Seeshaupt)&lt;br /&gt;
* '''2008''' &lt;br /&gt;
** [[Grillhüttenparty 2008|Grillhüttenparty_2008]] (Kirchen)&lt;br /&gt;
&lt;br /&gt;
=== Spain ===&lt;br /&gt;
&lt;br /&gt;
* '''2004'''&lt;br /&gt;
** [[BCNParty 100]] (Barcelona)&lt;br /&gt;
* '''2005'''&lt;br /&gt;
** [[BCNParty 101]] (Barcelona)&lt;br /&gt;
** [[RetroEuskal 2005]] (Bilbao)&lt;br /&gt;
* '''2006'''&lt;br /&gt;
** [[BCNParty 110]] [http://www.bcnparty.org] (Barcelona)&lt;br /&gt;
** [[RetroEuskal 2006]] (Bilbao)&lt;br /&gt;
* '''2007'''&lt;br /&gt;
** [[MadriSX 2007]] (Madrid)&lt;br /&gt;
&lt;br /&gt;
[[Category:CPC events|*]]&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=User_talk:Davidwild&amp;diff=19015</id>
		<title>User talk:Davidwild</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=User_talk:Davidwild&amp;diff=19015"/>
				<updated>2007-10-05T17:20:38Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: New page: Have I missed something if I have never heard of David Wild? And why should I be interested in where he lives and works now? --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Have I missed something if I have never heard of David Wild? And why should I be interested in where he lives and works now? --[[User:Villain|Villain]] 19:20, 5 October 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Hard%27OS&amp;diff=18493</id>
		<title>Hard'OS</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Hard%27OS&amp;diff=18493"/>
				<updated>2007-08-20T19:58:10Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Scene group]]&lt;br /&gt;
'''Hard'OS''' is a french CPC+ group.&lt;br /&gt;
&lt;br /&gt;
=== Members ===&lt;br /&gt;
*[[BDC-Iron]]: Coder - Demomaker - GFX&lt;br /&gt;
*[[Dada]]: Coder - Musician&lt;br /&gt;
*[[Slyder]]: GFX&lt;br /&gt;
*[[Tit'ane]]: Coder - Demomaker - GFX&lt;br /&gt;
*[[Power]]: Coder - Demomaker&lt;br /&gt;
&lt;br /&gt;
=== Demos ===&lt;br /&gt;
*[[Black Sabbath]]&lt;br /&gt;
*[[Ze Meeting 2000 Demo]]&lt;br /&gt;
*[[Walking on a scroll]]&lt;br /&gt;
&lt;br /&gt;
=== Utilities ===&lt;br /&gt;
*[[Graph'OS]], a graphical tool to paint gfx in fullscreen with the CPC+ extended palette.&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:Dada&amp;diff=18483</id>
		<title>Talk:Dada</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:Dada&amp;diff=18483"/>
				<updated>2007-08-19T12:05:56Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: New page: Hm, I don´t think it´s a good idea to have texts in french... Imagine if guys from every country will start to make their contributions in their own language. The Wiki would become compl...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hm, I don´t think it´s a good idea to have texts in french... Imagine if guys from every country will start to make their contributions in their own language. The Wiki would become completely useless. We don´t have to many points where the international scene comes together but the Wiki should be one of this points. But maybe that´s only my personal opinion. What do the others think? --[[User:Villain|Villain]] 14:05, 19 August 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:Arnold_V_specs&amp;diff=18248</id>
		<title>Talk:Arnold V specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:Arnold_V_specs&amp;diff=18248"/>
				<updated>2007-07-29T07:58:12Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The ASIC uses the IVR in combination with the DCSR (DMA Control/Status register) to place a value on the data bus during an interrupt. From the documentation I've read, the Z80 ignores bit D0 during an IM2 interrupt vector lookup, but this isn't the case in IM0. Further testing needs to be done in order to determine what the ASIC actually places in bit D0 during an interrupt. This bit is also used to automatically clear DMA interrupts when set to 0. Testing IM0 interrupts shouldn't be a hard task, I will do it as soon as possible, unless someone already knows the answer? [[User:Executioner|Executioner]] 01:00, 27 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:Hello mate... Sorry, I don't know the answer, just wanted to comment on your changes on the document: first of all, thanks so much for going over it in such detail, that's fantastic work. However, as the title of the document shows, this is an internal document of Amstrad regarding the Arnold specs. Changing bits here and there takes away from its historical value, since you're changing an original source document. If you can, please revert the changes, and only put the corrections in brackets or something... [[User:Gryzor|Gryzor]]&lt;br /&gt;
&lt;br /&gt;
::Hi Gryzor, I've done the tests and answered my own question. There are two versions of the original document converted by Rob Scott and Paul Fairman, the latest original source document is actually missing some important information which was in the original (1.4) version. The latest version for download on Cliff Lawson's site has some more detailed information provided by Kev Thacker. I will be updating the original source document to include the information I have added (and tested) so that it is as accurate as possible, and sending the new version to Cliff. Is this document really there just for historical value, or as a reference for Plus developers? [[User:Executioner|Executioner]] 01:19, 28 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::: Heya there. Since I have it exactly as it originally appeared, with the copyright notices and all, it's certainly wrong to alter it. I would assume there are much more useful resources for Plus developers than this white paper. Nevertheless, I don't object to correction - as long as it's clear that they're just that: corrections. So I would opt for moving corrections within brackets, or to the end of the document via pointers. You want me to do it? :) [[User:Gryzor|Gryzor]]&lt;br /&gt;
&lt;br /&gt;
:::: Hi Gryzor, I have fairly limited knowledge of Wiki editing, so maybe it would be best for you to do it. As far as I know, this is the only document available with such information. Another option may be to provide a separate Arnold V specs (revised) page and call this one Arnold V Specs (original 1.4 or 1.5). Interestingly 1.4 has more information than 1.5 (ie. the information about IVR etc). [[User:Executioner|Executioner]] 00:37, 29 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::::: In my eyes it would be the best to provide two different versions. Brackets, pointers or whatever wouldn´t make the document very readable or useable... --[[User:Villain|Villain]] 09:58, 29 July 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16766</id>
		<title>Talk:SYMBiFACE II</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16766"/>
				<updated>2007-06-14T15:49:05Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;@TFM: Strange that we need to repeat it again, but please log in and don't post with anonymouse munich IP address one more time. The port address of the &amp;quot;CPC IDE&amp;quot; is not fixed and can be changed to every other address. -- [[User:Prodatron|Prodatron]] 01:15, 27 October 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
: @Gryzor: I don´t think that this is an article about SymbOS. It is about the SYMBiFACE and if it can be used with other OS it should be mentioned here... --[[User:Villain|Villain]] 17:48, 14 June 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16765</id>
		<title>Talk:SYMBiFACE II</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16765"/>
				<updated>2007-06-14T15:48:33Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: SYMBiFACE = SymbOS???&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;@TFM: Strange that we need to repeat it again, but please log in and don't post with anonymouse munich IP address one more time. The port address of the &amp;quot;CPC IDE&amp;quot; is not fixed and can be changed to every other address. -- [[User:Prodatron|Prodatron]] 01:15, 27 October 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: I don´t think that this is an article about SymbOS. It is about the SYMBiFACE and if it can be used with other OS it should be mentioned here... --[[User:Villain|Villain]] 17:48, 14 June 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16764</id>
		<title>Talk:SYMBiFACE II</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Talk:SYMBiFACE_II&amp;diff=16764"/>
				<updated>2007-06-14T15:47:59Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;@TFM: Strange that we need to repeat it again, but please log in and don't post with anonymouse munich IP address one more time. The port address of the &amp;quot;CPC IDE&amp;quot; is not fixed and can be changed to every other address. -- [[User:Prodatron|Prodatron]] 01:15, 27 October 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: I don´t think that this is an article about SymbOS. It is about the SYMBiFACE and if it can be used with other OS it should be mentioned here...&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPCWiki_-_THE_Amstrad_CPC_encyclopedia!_talk:Privacy_policy&amp;diff=16761</id>
		<title>CPCWiki - THE Amstrad CPC encyclopedia! talk:Privacy policy</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPCWiki_-_THE_Amstrad_CPC_encyclopedia!_talk:Privacy_policy&amp;diff=16761"/>
				<updated>2007-06-13T19:59:19Z</updated>
		
		<summary type="html">&lt;p&gt;Villain: Spam! Why the f*** can they still do this?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Villain</name></author>	</entry>

	</feed>