diff --git a/blog/all_posts.html b/blog/all_posts.html index 21bdd54..8441986 100644 --- a/blog/all_posts.html +++ b/blog/all_posts.html @@ -17,6 +17,7 @@

all posts

October 2021

diff --git a/blog/all_tags.html b/blog/all_tags.html index cddfb1b..1ce2088 100644 --- a/blog/all_tags.html +++ b/blog/all_tags.html @@ -20,11 +20,11 @@
  • contribution — 1 post
  • coreutils — 1 post
  • dreams — 1 post
  • -
  • gasm — 2 posts
  • +
  • gasm — 3 posts
  • gemini — 1 post
  • gros — 2 posts
  • grsh — 2 posts
  • -
  • gru — 12 posts
  • +
  • gru — 13 posts
  • grutils — 2 posts
  • gxt — 2 posts
  • hexutils — 1 post
  • @@ -33,6 +33,7 @@
  • lobste.rs — 1 post
  • meeting — 1 post
  • monochrome — 1 post
  • +
  • ocpu — 1 post
  • orcc — 1 post
  • org-mode — 2 posts
  • org-roam — 1 post
  • @@ -45,7 +46,7 @@
  • tilde.tel — 1 post
  • webpage — 1 post
  • xmpp — 1 post
  • -
  • yemu — 2 posts
  • +
  • yemu — 3 posts
  • back home
    diff --git a/blog/feed.rss b/blog/feed.rss index b1d5abd..9de6b32 100644 --- a/blog/feed.rss +++ b/blog/feed.rss @@ -2,10 +2,34 @@ ~g1n's bloghttps://g1n.ttm.sh/blog/index.html ~g1n's blogen -Fri, 08 Oct 2021 15:18:34 +0000 -Fri, 08 Oct 2021 15:18:34 +0000 +Sun, 17 Oct 2021 17:10:26 +0000 +Sun, 17 Oct 2021 17:10:26 +0000 +GRU Devlog 13 - yemu, gasm and ocpu +This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    + +]]>
    https://g1n.ttm.sh/blog/gru-devlog-13---yemu-gasm-and-ocpu.html +https://g1n.ttm.sh/blog/./gru-devlog-13---yemu-gasm-and-ocpu.html +G1n +Sun, 17 Oct 2021 17:10:17 +0000
    + GRU Devlog 11 - yemu and channel on libera.chat + + + + + + +GRU Devlog 13 - yemu, gasm and ocpu + +
    +
    +
    +

    ~g1n's blog

    +
    ~g1n's blog
    +
    +
    + +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    + + +
    + +
    + diff --git a/blog/gru-devlog-13---yemu-gasm-and-ocpu.md b/blog/gru-devlog-13---yemu-gasm-and-ocpu.md new file mode 100644 index 0000000..b125e20 --- /dev/null +++ b/blog/gru-devlog-13---yemu-gasm-and-ocpu.md @@ -0,0 +1,17 @@ +GRU Devlog 13 - yemu, gasm and ocpu + +This week I have done several new instructions for yemu. For example all transfer instructions. + +Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start. + +But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it [here](https://g1n.ttm.sh/gru/ocpu). +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it. + +Also smlckz's idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino! + +Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :) + +tags: gru, yemu, gasm, ocpu diff --git a/blog/index.html b/blog/index.html index 4c07a59..d730ca7 100644 --- a/blog/index.html +++ b/blog/index.html @@ -14,6 +14,31 @@
    ~g1n's blog
    +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    +

    GRU Devlog 11 - yemu and channel on libera.chat

    @@ -293,31 +318,6 @@ or any other type of contact (irc: g1n on tilde.chat, xmpp: g1n@hmm.st)

    - -

    -GRU DevLog 2 - Orion -

    - -
    August 08, 2021 — -G1n -
    - - -

    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

    - - -
    diff --git a/blog/tag_gasm.html b/blog/tag_gasm.html index b537e30..b6837ba 100644 --- a/blog/tag_gasm.html +++ b/blog/tag_gasm.html @@ -14,6 +14,31 @@
    ~g1n's blog
    +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    +

    GRU Devlog 10 - orsh now like proper shell and gasm

    diff --git a/blog/tag_gru.html b/blog/tag_gru.html index 77326de..a02d7d1 100644 --- a/blog/tag_gru.html +++ b/blog/tag_gru.html @@ -14,6 +14,31 @@
    ~g1n's blog
    +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    +

    GRU Devlog 11 - yemu and channel on libera.chat

    diff --git a/blog/tag_ocpu.html b/blog/tag_ocpu.html new file mode 100644 index 0000000..9ed9cd7 --- /dev/null +++ b/blog/tag_ocpu.html @@ -0,0 +1,46 @@ + + + + + + + +~g1n's blog — posts tagged "ocpu" + +
    +
    +
    +

    ~g1n's blog

    +
    ~g1n's blog
    +
    +
    +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    + +
    + +
    + diff --git a/blog/tag_yemu.html b/blog/tag_yemu.html index 15138fb..a2a4873 100644 --- a/blog/tag_yemu.html +++ b/blog/tag_yemu.html @@ -14,6 +14,31 @@
    ~g1n's blog
    +

    +GRU Devlog 13 - yemu, gasm and ocpu +

    + +
    October 17, 2021 — +G1n +
    + + +

    This week I have done several new instructions for yemu. For example all transfer instructions.

    + +

    Also I have rewritten gasm to support 6502, published it and it should help me with debugging yemu. +It supports not very a lot instructions but I hope it is good start.

    + +

    But I think the coolest what I did this week is ocpu proccessor specification. +Currently it is draft but i have already published it here. +I hope this specifications will be Turing complete and we will try to implement it in real world. +But firstly we need to make this specififcations complete, assembler and emulator for it.

    + +

    Also smlckz’s idea was to make translator from ocpu assembler instructions to avr to emulate it on arduino!

    + +

    Hope you liked this post! If you would like to help me, contact me via email, xmpp or irc :)

    + +

    tags: gru, yemu, gasm, ocpu

    +

    GRU Devlog 11 - yemu and channel on libera.chat