Kiwi
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Kiwi HLS
Provenance: commit 44e648eae1 · authored 2026-03-12T04:16:40+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Counter
Provenance: commit 44e648eae1 · authored 2026-03-12T04:16:40+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// Kiwi hardware synthesis example: Simple counter
// Kiwi takes C# programs and synthesises them to FPGA hardware
using System;
[KiwiSystem]
public class SimpleCounter
{
static int count = 0;
[Kiwi.HardwareEntryPoint()]
static void Main()
{
while (true)
{
count = count + 1;
Kiwi.Pause();
}
}
}