luat_hmeta_pc.c 295 B

123456789101112131415161718
  1. #include "luat_base.h"
  2. #include "luat_hmeta.h"
  3. int luat_hmeta_chip(char* buff) {
  4. memcpy(buff, "x86", 4);
  5. return 0;
  6. }
  7. int luat_hmeta_model_name(char* buff) {
  8. memcpy(buff, "PC", 3);
  9. return 0;
  10. }
  11. int luat_hmeta_hwversion(char* buff) {
  12. memcpy(buff, "A10", 4);
  13. return 0;
  14. }