📄 hello_vme.c
字号:
#include <vme/vme.h>#include <vme/vme_api.h>#include <stdio.h>int main(){ vme_bus_handle_t bus_handle; if (vme_init(&bus_handle)) { perror("Cannot initialize the VMEbus"); return -1; } printf("We're ready to start accessing the bus now!\n"); vme_term(bus_handle); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -