Multiply Polynoms.c 680 B

1234567891011121314151617181920
  1. // Multiply and expand the two polynoms passed to the program
  2. #define USE_TI89 // Compile for TI-89
  3. #define USE_TI92PLUS // Compile for TI-92 Plus
  4. #define USE_V200 // Compile for V200
  5. #define OPTIMIZE_ROM_CALLS // Use ROM Call Optimization
  6. #define RETURN_VALUE // Return a value
  7. #define ENABLE_ERROR_RETURN // Enable returning errors
  8. #define MIN_AMS 101 // Compile for AMS 1.01 or higher
  9. #define SAVE_SCREEN // Save/Restore LCD Contents
  10. #include <tigcclib.h> // Include All Header Files
  11. // Main Function
  12. void _main(void)
  13. {
  14. push_quantum_pair (MUL_TAG, EXPAND_TAG);
  15. NG_rationalESI (top_estack);
  16. }