mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-10 04:23:24 -04:00

- Rewritten from C-- to FASM - Function to select not a single pixel, but a 7*7 rect from screen; - Function to select each pixel from selected rect; - Updated UX/UI. Co-authored-by: leency <lipatov.kiril@gmail.com>
5 lines
296 B
Lua
5 lines
296 B
Lua
if tup.getconfig("NO_FASM") ~= "" then return end
|
|
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
|
|
tup.include(HELPERDIR .. "/use_fasm.lua")
|
|
tup.rule("pipet.asm", FASM .. " -dlang=" .. tup.getconfig("LANG") .. " %f %o" .. tup.getconfig("KPACK_CMD"), "%B")
|