Skip to content

⌜V O I D os⌟ is an Operating System that uses V O I D lang to run and create applications and games

Notifications You must be signed in to change notification settings

voidspawner/void.os

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

V O I D os

⌜ V O I D os ⌟ is an Operating System that uses V O I D lang to run and create applications and games.

The project is in the process of development.

Structure

The operating system is in a single file. This makes it easy to transfer it to different devices, backup and control damage or modification.

os.void

The operating system contains viewing and editing media and office files, working with the file system, web browser, social network client and server, network load balancing, interfacing with peripherals, virtualization tools, AI helper, creating applications and 3D・2D・VN games.

Security

Each application can run in a separate isolated space, with a limited set of actions, or in a separate virtual machine, so that no data corruption or stealing occurs.

V O I D os retro

An Operating System with V O I D lang that can run on retro computers.

Atari 65XE

8086 CPU

80286 CPU

Year

1985

1978

1982

Transistors

3 510

29 000

134 000

Technology

8 μm

3 μm

1.5 μm

Architecture

8 bit

16 bit

16 bit

Instructions

55

81

109

Clock Rate

1.79 Mhz

4 Mhz

12 Mhz

Data Bus

8 bit

16 bit

16 bit

Address Bus

16 bit

20 bit

24 bit

Memory

64 kb

640 kb

640 kb

HDD

-

40 Mb

40 Mb

Floppy

5.25"

5.25"

5.25"

Cartridge

+

-

-

Cassette Tape

+

-

-

Joystick

+

-

-

Mouse

+

+

+

Keyboard

+

+

+

Modem

300 baud

300 baud

300 baud

Monitor

TV

EGA

EGA

Width

320

640

640

Height

192

350

350

Columns

40

80

80

Rows

24

25

25

Colors

16 (256)

16 (64)

16 (64)

The operating system can be written using Assembly and C++ languages. Or the direct use of opcodes.

        .org $c000    ; Starting address of the program

start   lda #<message ; Load message address
        sta $07f8     ; Set string output address
        lda #>message
        sta $07f9

        lda #13       ; Select color (text white, background black)
        jsr $e544     ; Calling system function

loop    lda message,x ; Load character from string
        beq done      ; If the character is null, terminate
        jsr $e716     ; Output the character to the screen
        inx           ; Increase string index
        bne loop      ; Go to next character

done    rts           ; Return from the program

message .byte "Hi World :)", 0 ; Message string

A Bit of History

The first computers were just advanced calculators. To operate such a calculator, the Operating System was a programming language. Thus the IBM 5100 operating system was represented by two languages BASIC and APL (for working with matrix and other scientific calculations).

Retroinformática: IBM 5100 (1975)

Later operating systems extended their file handling functionality. Unix, CP/M, DOS were simplified versions of programming languages for working with the file system.

DEC VT100 3 KB RAM (1978)

And even later, with the appearance of multitasking operating systems, applications began to use operating system API calls to access devices and display user interface (UI).

Macintosh 128K (1984)

Computer technology is continually evolving.

Type

Name

Year

Programming Language Short Code 1950
OS GM-NAA I/O

1956

Game Spacewar!

1962

Multitasking OS PDP-6

1964

3D Game Battlezone

1980

HTTP Server CERN httpd

1990

Web Browser WorldWideWeb

1990

Encoding Unicode

1991

Compress Gzip

1992

Web Language JavaScript

1995

Social Network SixDegrees

1997

Web Data Format JSON

1999

3D Craft Game Minecraft

2009

Now it has come to the point where applications can be created in simple descriptive language V O I D lang, and all the complex functionality residing directly in the V O I D os.

V O I D lang

⌜ V O I D lang ⌟ is the language for rapidly creating applications in the V O I D or JSON format. It is used as a replacement for both the standard Bash/CMD/etc. languages and for writing UI Applications, Servers and Games. The language uses one of the languages already preinstalled in the system. So you don't need to install anything else. Code and data are not separated. So the whole application fits in one V O I D or JSON file. Since the code is presented as data, applications can be easily generated with AI, updated, installed and launched remotely.

About

⌜V O I D os⌟ is an Operating System that uses V O I D lang to run and create applications and games

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published