<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to System_Organization</title><link>https://sourceforge.net/p/nitros9/wiki/System_Organization/</link><description>Recent changes to System_Organization</description><atom:link href="https://sourceforge.net/p/nitros9/wiki/System_Organization/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 27 Jun 2014 23:18:40 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/nitros9/wiki/System_Organization/feed" rel="self" type="application/rss+xml"/><item><title>System_Organization modified by Lothan</title><link>https://sourceforge.net/p/nitros9/wiki/System_Organization/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,31 +1,67 @@
+[TOC]
+
+## System Organization
+
 The NitrOS-9 Operating System is composed of groups of modules that work together to perform a common task. The following illustration shows the major modules and their position in the five-layer organization of NitrOS-9:

-  
-Layer 5 
+**Layer 5**
+**D0**
+**D1**
+**D2**
+**Term**
+**T1**
+**T2**
+**Pipe**

-Layer 4 
+**Layer 4**
+Floppy Driver (**rb1773**) 
+Terminal or Serial Driver 
+Pipe Driver (**Piper**) 

-Layer 3 
+**Layer 3**
+Disk File Manager (**RBF**) 
+Character File Manager (**SCF**) 
+Pipe File Manager (**PIPEMAN**) 

-  
-Layer 2 
+**Layer 2**
+Input/Output Manager (**IOMan**)

-Layer 1 
+**Layer 1**
+NitrOS-9 Kernel (**Krn**, **KrnP2**) 
+**Init**
+**Clock**
+**Clock2**

-  
-Layer 1: The Kernel At the lowest layer, Krn and KrnP2 make up the two primary parts of the kernel, or core of NitrOS-9. It is the kernel that provides the intelligence behind NitrOS-9, and handles basic system services such as multitasking and memory management. The kernel also links all other NitrOS-9 modules into the system. 
+### Layer 1: The Kernel

-Another important set of modules that reside at this layer are Clock and Clock2. Together, these two modules work to keep track of both system time (known as the tick, the heartbeat of the system) as well as actual clock time, either through software or via real-time clock hardware. 
+At the lowest layer, **Krn** and **KrnP2** make up the two primary parts of the _kernel_, or core of NitrOS-9. It is the kernel that provides the intelligence behind NitrOS-9, and handles basic system services such as multitasking and memory management. The kernel also links all other NitrOS-9 modules into the system. 

-The final module of this layer is Init. This module contains a table of initialization values and is consulted by the kernel during system startup. Information such as the user task to run after boot, initial table sizes, and device names are found in this module. It is loaded into RAM (random access memory) by the NitrOS-9 bootstrap module Boot, along with other necessary system modules. Layer 2: IOMan The system’s second layer (just above kernel) contains the input/output manager, IOMan. This module provides common processing for all input/output operations, and is required for performing any I/O supported by NitrOS-9. Layer 3: File Managers The system’s third layer contains file managers. File managers perform I/O request processing for similar classes of I/O devices. There are three file managers: 
+Another important set of modules that reside at this layer are **Clock** and **Clock2**. Together, these two modules work to keep track of both system time (known as the _tick_, the heartbeat of the system) as well as actual clock time, either through software or via real-time clock hardware. 

-RBF The random block file manager processes all disk I/O operations. 
+The final module of this layer is **Init**. This module contains a table of initialization values and is consulted by the kernel during system startup. Information such as the user task to run after boot, initial table sizes, and device names are found in this module. It is loaded into RAM (random access memory) by the NitrOS-9 bootstrap module **Boot**, along with other necessary system modules. 

-SCF The sequential character file manager handles all non-disk I/O operations that operate one character at a time. These operations include terminal and printer I/O. 
+### Layer 2: IOMan

-PIPEMAN The pipe file manager handles pipes. Pipes are memory buffers that act as files. Pipes are used for data transfers between processes. 
+The system’s second layer (just above kernel) contains the input/output manager, **IOMan**. This module provides common processing for all input/output operations, and is required for performing any I/O supported by NitrOS-9. 

-Layer 4: Device Drivers The system’s fourth layer is the device driver layer. Device drivers handle basic I/O functions for specific I/O controller hardware, and are normally provided to you when you purchase new I/O devices or cartridges. You can use pre-written drivers, or you can write your own. Layer 5: Device Descriptors The system’s fifth layer contains the device descriptors. Device descriptors are small tables that define the logical name, device driver and file manager for each I/O port. They also contain port initialization and port address information. Device descriptors require only one copy of each I/O controller driver used. Beyond Layer 5: Applications NitrOS-9’s primary purpose is to act as the manager of data flow for applications, which run as processes outside of the five layer hierarchy. This includes the initial user process, SysGo, which is forked after boot, and Shell, the program that allows commands to be typed and executed by NitrOS-9. 
+### Layer 3: File Managers

-  
-� 
+The system’s third layer contains _file managers_. File managers perform I/O request processing for similar classes of I/O devices. There are three file managers: 
+
+**RBF** The random block file manager processes all disk I/O operations. 
+
+**SCF** The sequential character file manager handles all non-disk I/O operations that operate one character at a time. These operations include terminal and printer I/O. 
+
+**PIPEMAN** The pipe file manager handles _pipes_. Pipes are memory buffers that act as files. Pipes are used for data transfers between processes. 
+
+### Layer 4: Device Drivers
+
+The system’s fourth layer is the _device driver_ layer. Device drivers handle basic I/O functions for specific I/O controller hardware, and are normally provided to you when you purchase new I/O devices or cartridges. You can use pre-written drivers, or you can write your own. 
+
+### Layer 5: Device Descriptors
+
+The system’s fifth layer contains the _device descriptors_. Device descriptors are small tables that define the logical name, device driver and file manager for each I/O port. They also contain port initialization and port address information. Device descriptors require only one copy of each I/O controller driver used. 
+
+### Beyond Layer 5: Applications
+
+NitrOS-9’s primary purpose is to act as the manager of data flow for applications, which run as processes outside of the five layer hierarchy. This includes the initial user process, **SysGo**, which is forked after boot, and **Shell**, the program that allows commands to be typed and executed by NitrOS-9. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lothan</dc:creator><pubDate>Fri, 27 Jun 2014 23:18:40 -0000</pubDate><guid>https://sourceforge.net8e1ba74e2c87a4af5d69b124cf9f0647e06fe081</guid></item><item><title>System_Organization modified by Boisy Pitre</title><link>https://sourceforge.net/p/nitros9/wiki/System_Organization/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The NitrOS-9 Operating System is composed of groups of modules that work together to perform a common task. The following illustration shows the major modules and their position in the five-layer organization of NitrOS-9: &lt;/p&gt;
&lt;p&gt;Layer 5 &lt;/p&gt;
&lt;p&gt;Layer 4 &lt;/p&gt;
&lt;p&gt;Layer 3 &lt;/p&gt;
&lt;p&gt;Layer 2 &lt;/p&gt;
&lt;p&gt;Layer 1 &lt;/p&gt;
&lt;p&gt;Layer 1: The Kernel At the lowest layer, Krn and KrnP2 make up the two primary parts of the kernel, or core of NitrOS-9. It is the kernel that provides the intelligence behind NitrOS-9, and handles basic system services such as multitasking and memory management. The kernel also links all other NitrOS-9 modules into the system. &lt;/p&gt;
&lt;p&gt;Another important set of modules that reside at this layer are Clock and Clock2. Together, these two modules work to keep track of both system time (known as the tick, the heartbeat of the system) as well as actual clock time, either through software or via real-time clock hardware. &lt;/p&gt;
&lt;p&gt;The final module of this layer is Init. This module contains a table of initialization values and is consulted by the kernel during system startup. Information such as the user task to run after boot, initial table sizes, and device names are found in this module. It is loaded into RAM (random access memory) by the NitrOS-9 bootstrap module Boot, along with other necessary system modules. Layer 2: IOMan The system’s second layer (just above kernel) contains the input/output manager, IOMan. This module provides common processing for all input/output operations, and is required for performing any I/O supported by NitrOS-9. Layer 3: File Managers The system’s third layer contains file managers. File managers perform I/O request processing for similar classes of I/O devices. There are three file managers: &lt;/p&gt;
&lt;p&gt;RBF The random block file manager processes all disk I/O operations. &lt;/p&gt;
&lt;p&gt;SCF The sequential character file manager handles all non-disk I/O operations that operate one character at a time. These operations include terminal and printer I/O. &lt;/p&gt;
&lt;p&gt;PIPEMAN The pipe file manager handles pipes. Pipes are memory buffers that act as files. Pipes are used for data transfers between processes. &lt;/p&gt;
&lt;p&gt;Layer 4: Device Drivers The system’s fourth layer is the device driver layer. Device drivers handle basic I/O functions for specific I/O controller hardware, and are normally provided to you when you purchase new I/O devices or cartridges. You can use pre-written drivers, or you can write your own. Layer 5: Device Descriptors The system’s fifth layer contains the device descriptors. Device descriptors are small tables that define the logical name, device driver and file manager for each I/O port. They also contain port initialization and port address information. Device descriptors require only one copy of each I/O controller driver used. Beyond Layer 5: Applications NitrOS-9’s primary purpose is to act as the manager of data flow for applications, which run as processes outside of the five layer hierarchy. This includes the initial user process, SysGo, which is forked after boot, and Shell, the program that allows commands to be typed and executed by NitrOS-9. &lt;/p&gt;
&lt;p&gt;� &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boisy Pitre</dc:creator><pubDate>Fri, 27 Jun 2014 23:18:40 -0000</pubDate><guid>https://sourceforge.neta47ff47fa3a9259c003704de25995f9c3352d084</guid></item></channel></rss>