QUOTE (Radical Pi @ 20 Dec, 2006, 16:15) |
How about... an interpreted language specifically designed for gaming? |
QUOTE (Radical Pi @ 20 Dec, 2006, 18:04) |
Actually I was more thinking of FastRPL. I didn't no MLC was also a shell. :)![]() |
QUOTE (elfprince13 @ 20 Dec, 2006, 21:53) |
no offense meant but several things Id like to point out here. the phrase "kernel" is probably the wrong one in this case since you are referring to an 83+ shell. in general BASIC shells are fun to write, but not particularly useful in the long run (dont take this as a discouragement of the project, just a helpful suggestion) writing a shell in asm is much more useful but the fact the you are asking whether or not you should do it in asm would seem to imply you aren't familiar enough with asm to want to undertake a project of this magnitude in it yet. anywho, other than that, sounds like a fun project, if you do it in basic I suggest the use of codex and program tools as 2 excellent tools for creating basic shells. If you do it in asm I suggest learning the language and writing a few games before trying anything like this. |
QUOTE (xlibman @ 21 Dec, 2006, 8:34) |
werent kernel the same thing than shells? On 68k i remember everything that was a shell was called a kernel, I dunno why. Sound nice for a first project tho, I would allow the user to set his key combination to unlock the calc... uhm wait that would be a nice alternative for a password program (on xbox passwords are key based, not character based :D ![]() |
QUOTE (xlibman @ 21 Dec, 2006, 8:34) |
werent kernel the same thing than shells? On 68k i remember everything that was a shell was called a kernel, I dunno why. Sound nice for a first project tho, I would allow the user to set his key combination to unlock the calc... uhm wait that would be a nice alternative for a password program (on xbox passwords are key based, not character based :D ![]() |
QUOTE ("Wikipedia") |
In computing, the kernel is the central component of most computer operating systems (OSs). Its responsibilities include managing the system's resources and the communication between hardware and software components. As a basic component of an operating system, a kernel provides the lowest level of abstraction layer for the resources (especially memory, processors and I/O devices) that applications must control to perform their function. It typically makes these facilities available to application processes through inter-process communication mechanisms and system calls. These tasks are done differently by different kernels, depending on their design and implementation. While monolithic kernels will try to achieve these goals by executing all the code in the same address space to increase the performance of the system, microkernels run most of their services in user space, aiming to improve maintainability and modularity of the codebase.[1] A range of possibilities exists between these two extremes. |
QUOTE ("wikipedia") |
In computing, a shell is a piece of software that provides an interface for users (command line interpreter). Typically, the term refers to an operating system shell which provides access to the services of a kernel. However, the term is also applied very loosely to applications and may include any software that is "built around" a particular component, such as web browsers and email clients that are "shells" for HTML rendering engines. The name 'shell' originates from shells being an outer layer of interface between the user and the innards of the operating system (the kernel). Operating system shells generally fall into one of two categories: command line and graphical. Command line shells provide a command line interface (CLI) to the operating system, while graphical shells provide a graphical user interface (GUI). The relative merits of CLI- and GUI-based shells are often debated. CLI proponents claim that certain operations can be performed much faster under CLI shells than under GUI shells (such as moving files, for example). However, GUI proponents advocate the comparative usability and simplicity of GUI shells. The best choice is often determined by the way in which a computer will be used. On a server mainly used for data transfers and processing with expert administration, a CLI is likely to be the best choice. On the other hand, a GUI would be more appropriate for a computer to be used for image or video editing and the development of the above data. Modern versions of the Microsoft Windows operating system use Windows Explorer as their shell. Explorer provides the familiar desktop environment, Start menu, and task bar, as well as the file management functions of the operating system. Older versions also include Program Manager which was the Shell for the 3.x series of Microsoft Windows. Many individuals and developers dissatisfied with the interface of Windows Explorer have developed software that either alters the functioning and appearance of the shell or replaces it entirely. WindowBlinds by StarDock is a good example of the former sort of application. LiteStep, GeoShell and BB4Win are good examples of the latter. |
QUOTE |
werent kernel the same thing than shells? On 68k i remember everything that was a shell was called a kernel, I dunno why. |
QUOTE (Demon @ 25 Dec, 2006, 23:51) |
The password thing: Maybe it should be an option of how much protection you want. You could set it so you could have protection that no one - not even you - can break or protection you can get around easily... |
QUOTE (CureDesu @ 27 Dec, 2006, 23:39) |
That would be pretty damn awesome if it was possible to run C on Z80 calcs.
Post by: DrewMarin on December 28, 2006, 04:36:00 pm Post by: Jon on January 18, 2007, 05:11:00 pm ![]() |