KO
|
EN
gitlite — search
Search
#python
#api
#ai
#rust
#telegram
#docker
#docker-compose
#typescript
#reactjs
#tailwindcss
#open-source
#pytorch
tim
★ 58
Open GitHub ↗
Titanium - Virtual Machine Written in C
Download README (.md)
Explore Similar Repositories
streamlit-pandasai
:
Chat with your dataset! This project demonstrates a web-based application to query a dataset through natural language.
all_vm2_vm_node_sandbox
:
志远补环境框架
chatgpt-vits-waifu
:
使用chatgpt的api与vits语音合成,实现了与ai老婆语音聊天。并加入了记忆功能与信息总结功能,大大提升了对话的容量。从而实现了连续长对话的效果
Smart-Adaptive-Traffic-Management-System
:
🚗🚦 Introducing our Smart Adaptive Traffic Management System! 📷🧠 Using YOLO v8 object detection & CCTV cameras, we analyze real-time traffic. By tracking vehicles 🚙 & pedestrians 🚶, we enhance signal timings for better flow, safety, & reduced congestion. Drive smarter with us! 🌐🏞️
OpenGimbal
:
CAD files for a crazyflie drone test gimbal
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tim
?
Download (.md)
# TIM - Titanium Virtual Machine CanoScript is now in its own [repo](https://www.github.com/CobbCoding1/canoscript) Implementation of a virtual machine in C. VM currently has 45 instructions as well as a some native functions. List can be found in tim.h. There is also a working assembly which contains support for all instructions in the VM. Quick Start: ```bash make ./tasm <assembly_file.tasm> ./tire <bytecode_file.tim> ``` Example of hello world in assembly: ```asm @imp "stddefs.tash" push_str "Hello, world!\n" get_str 0 ; Index of the string on the data stack push STDOUT write ; length is inferred because the string is null-terminated ```