home.social

#lunapnr — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #lunapnr, aggregated by home.social.

  1. Today I will be mostly looking at C++ plugin architectures. #LunaPnR #VLSI #ASIC

  2. Writing a small TCL interpreter to enable TCL in #LunaPnR

    Currently it can do fizz-buzz :)

    ```
    set x 1;
    while {$x < 100} {
    set txt "";
    if {$x % 3 == 0} { set txt "FIZZ "; };
    if {$x % 5 == 0} { set txt "${txt}BUZZ "; };
    puts "$x $txt";
    incr x;
    }
    ```

    asicsforthemasses.com #VLSI