New GRU devlog

This commit is contained in:
g1n 2021-08-08 14:14:18 +00:00
parent 772b8d28ae
commit 36d02a6690
8 changed files with 172 additions and 20 deletions

View File

@ -17,6 +17,7 @@
<h3>all posts</h3>
<h4 class='allposts_header'>August 2021</h4>
<ul>
<li><a href="./gru-devlog-2---orion.html">GRU DevLog 2 - Orion</a> &mdash; August 08, 2021</li>
<li><a href="./gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">GRU DevLog 1 - gros sources published and add wc to grutils</a> &mdash; August 01, 2021</li>
</ul>
<h4 class='allposts_header'>July 2021</h4>

View File

@ -20,9 +20,10 @@
<li><a href="tag_gemini.html">gemini</a> &mdash; 1 post</li>
<li><a href="tag_gros.html">gros</a> &mdash; 2 posts</li>
<li><a href="tag_grsh.html">grsh</a> &mdash; 1 post</li>
<li><a href="tag_gru.html">gru</a> &mdash; 2 posts</li>
<li><a href="tag_gru.html">gru</a> &mdash; 3 posts</li>
<li><a href="tag_grutils.html">grutils</a> &mdash; 2 posts</li>
<li><a href="tag_monochrome.html">monochrome</a> &mdash; 1 post</li>
<li><a href="tag_orion.html">orion</a> &mdash; 1 post</li>
<li><a href="tag_protocol.html">protocol</a> &mdash; 1 post</li>
<li><a href="tag_spartan.html">spartan</a> &mdash; 1 post</li>
<li><a href="tag_tilde.team.html">tilde.team</a> &mdash; 1 post</li>

View File

@ -2,10 +2,31 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel><title>~g1n's blog</title><link>https://xhec.one/~g1n/index.html</link>
<description>~g1n's blog</description><language>en</language>
<lastBuildDate>Sun, 01 Aug 2021 16:12:59 +0000</lastBuildDate>
<pubDate>Sun, 01 Aug 2021 16:12:59 +0000</pubDate>
<lastBuildDate>Sun, 08 Aug 2021 14:13:29 +0000</lastBuildDate>
<pubDate>Sun, 08 Aug 2021 14:13:29 +0000</pubDate>
<atom:link href="https://xhec.one/~g1n/feed.rss" rel="self" type="application/rss+xml">
<item><title>
GRU DevLog 2 - Orion
</title><description><![CDATA[
<p>This week I was developing new OS - Orion.</p>
<p>I don&rsquo;t understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I&rsquo;ll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.</p>
<p>Of course if you can help me contact me throught email or in other ways!</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_orion.html'>orion</a></p>
<!-- text end -->
]]></description><link>https://xhec.one/~g1n/gru-devlog-2---orion.html</link>
<guid>https://xhec.one/~g1n/./gru-devlog-2---orion.html</guid>
<dc:creator>G1n</dc:creator>
<pubDate>Sun, 08 Aug 2021 14:11:43 +0000</pubDate></item>
<item><title>
GRU DevLog 1 - gros sources published and add wc to grutils
</title><description><![CDATA[

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="stylesheet" href="blog.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="subscribe to this page..." href="xhec.one/~g1n/feed.xml">
<title>GRU DevLog 2 - Orion</title>
</head><body>
<div id="divbodyholder">
<div class="headerholder"><div class="header">
<div id="title">
<h1 class="nomargin"><a class="ablack" href="https://xhec.one/~g1n/index.html">~g1n's blog</a></h1>
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<!-- entry begin -->
<h3><a class="ablack" href="gru-devlog-2---orion.html">
GRU DevLog 2 - Orion
</a></h3>
<!-- bashblog_timestamp: #202108081411.43# -->
<div class="subtitle">August 08, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>This week I was developing new OS - Orion.</p>
<p>I don&rsquo;t understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I&rsquo;ll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.</p>
<p>Of course if you can help me contact me throught email or in other ways!</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_orion.html'>orion</a></p>
<!-- text end -->
<!-- entry end -->
</div>
<div id="footer">CC by-nc-nd <a href="https://tilde.team/~g1n/">G1n</a> &mdash; <a href="mailto:g1n&#64;xhec&#46;one">g1n&#64;xhec&#46;one</a><br>
generated with <a href="https://tildegit.org/team/bashblog">bashblog</a>, a single bash script to easily create blogs like this one</div>
</div></div>
</body></html>

View File

@ -0,0 +1,14 @@
GRU DevLog 2 - Orion
This week I was developing new OS - Orion.
I don't understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I'll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.
Of course if you can help me contact me throught email or in other ways!
tags: gru, orion

View File

@ -14,6 +14,28 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-2---orion.html">
GRU DevLog 2 - Orion
</a></h3>
<!-- bashblog_timestamp: #202108081411.43# -->
<div class="subtitle">August 08, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>This week I was developing new OS - Orion.</p>
<p>I don&rsquo;t understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I&rsquo;ll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.</p>
<p>Of course if you can help me contact me throught email or in other ways!</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_orion.html'>orion</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
@ -167,23 +189,6 @@ G1n
<p>Tags: <a href='tag_notmuch.html'>notmuch</a>, <a href='tag_email.html'>email</a>, <a href='tag_emacs.html'>emacs</a>, <a href='tag_emacs-for-everything.html'>emacs-for-everything</a></p>
<!-- text end -->
<h3><a class="ablack" href="exploring-plan-9.html">
Exploring Plan 9
</a></h3>
<!-- bashblog_timestamp: #202105090940.37# -->
<div class="subtitle">May 09, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I have just installed plan 9 on virtual machine. It had graphical installer. But when image was extracting it was very long for me (I gived it 2 gigabytes of space).
Connected to the internet and finding something that I can do there</p>
<p>Main site: <a href="https://9p.io/plan9/">https://9p.io/plan9/</a>
<p>Tags: <a href='tag_plan9.html'>plan9</a>, <a href='tag_qemu.html'>qemu</a>, <a href='tag_virt-manager.html'>virt-manager</a></p>
<!-- text end -->
<div id="all_posts"><a href="all_posts.html">archive</a> &mdash; <a href="all_tags.html">all tags</a> &mdash; <a href="xhec.one/~g1n/feed.xml">rss</a></div>
</div>

View File

@ -14,6 +14,28 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-2---orion.html">
GRU DevLog 2 - Orion
</a></h3>
<!-- bashblog_timestamp: #202108081411.43# -->
<div class="subtitle">August 08, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>This week I was developing new OS - Orion.</p>
<p>I don&rsquo;t understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I&rsquo;ll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.</p>
<p>Of course if you can help me contact me throught email or in other ways!</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_orion.html'>orion</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>

43
blog/tag_orion.html Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="stylesheet" href="blog.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="subscribe to this page..." href="xhec.one/~g1n/feed.xml">
<title>~g1n's blog &mdash; posts tagged "orion"</title>
</head><body>
<div id="divbodyholder">
<div class="headerholder"><div class="header">
<div id="title">
<h1 class="nomargin"><a class="ablack" href="https://xhec.one/~g1n/index.html">~g1n's blog</a></h1>
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-2---orion.html">
GRU DevLog 2 - Orion
</a></h3>
<!-- bashblog_timestamp: #202108081411.43# -->
<div class="subtitle">August 08, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>This week I was developing new OS - Orion.</p>
<p>I don&rsquo;t understand very basic osdev thing so I decided to make OS on C and Asm.
Currently that can just output text (with printf arguments) on screen and serial.
Now gros is much cooler than Orion - it has input, interupts and a lot of else.
But maybe I&rsquo;ll understand OSdev better.
Currently working on GDT (global descriptor table) and than will work on
interrupts and exceptions.</p>
<p>Of course if you can help me contact me throught email or in other ways!</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_orion.html'>orion</a></p>
<!-- text end -->
</div>
<div id="footer">CC by-nc-nd <a href="https://tilde.team/~g1n/">G1n</a> &mdash; <a href="mailto:g1n&#64;xhec&#46;one">g1n&#64;xhec&#46;one</a><br>
generated with <a href="https://tildegit.org/team/bashblog">bashblog</a>, a single bash script to easily create blogs like this one</div>
</div></div>
</body></html>