Updates/fixes to NTSL

- Fixed NTSL division
  - Added new NTSL math functions
  - Added changelog information
This commit is contained in:
TedStudley
2015-01-03 17:03:23 -08:00
parent b94fcf06b3
commit 777a2800a3
5 changed files with 39 additions and 3 deletions
@@ -190,6 +190,11 @@
interpreter.SetProc("randseed", /proc/n_randseed)
interpreter.SetProc("min", /proc/n_min)
interpreter.SetProc("max", /proc/n_max)
interpreter.SetProc("sin", /proc/n_sin)
interpreter.SetProc("cos", /proc/n_cos)
interpreter.SetProc("asin", /proc/n_asin)
interpreter.SetProc("acos", /proc/n_acos)
interpreter.SetProc("log", /proc/n_log)
// Time
interpreter.SetProc("time", /proc/n_time)