Search found 2 matches

by VadimTukaev
Sat Jun 14, 2014 12:43 pm
Forum: newLISP newS
Topic: Embed C or ASM in newLISP
Replies: 7
Views: 13003

Re: Embed C or ASM in newLISP

Apparently you have not read the previous posts. It was about the framework "define-ext" - https://github.com/rowanthorpe/define-e ... /USAGE.txt
by VadimTukaev
Sat Jun 14, 2014 10:04 am
Forum: newLISP newS
Topic: Embed C or ASM in newLISP
Replies: 7
Views: 13003

Re: Embed C or ASM in newLISP

It seems to be "killer-feature" to me. I have some C-code and I want to link it by high-level language. Unfortunately, I can't understand, how to use it to embed obj files. I read USAGE.txt already! Example: #define MAX_SIZ 100 static double per[MAX_SIZ]; double* c_percents(double* arr, int siz) { i...