创新can调试器Linux版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
210 B

4 years ago
  1. program Project1;
  2. uses
  3. Forms,
  4. Unit1 in 'Unit1.pas' {Form1},
  5. ControlCAN in 'ControlCAN.pas';
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TForm1, Form1);
  10. Application.Run;
  11. end.