ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
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.
 
 
 
 
 
 

39 lines
1.2 KiB

  1. 1 rem This is Master16 the Fixed Asset Accounting Menu
  2. %INCLUDE ALL.BAS
  3. 500 RESTORE
  4. 1025 PRINT clear$:PRINT
  5. 1030 PRINT "*** FIXED ASSET ACCOUNTING MENU ***":PRINT
  6. 2000 PRINT "1 - ENTER OR MODIFY CAPITAL GOODS"
  7. 2010 PRINT
  8. 2020 PRINT "2 - CALCULATE YEARS DEPRECIATION"
  9. 2030 PRINT
  10. 2040 PRINT "3 - PRINT DEPRECIATION REPORT"
  11. 2050 PRINT
  12. 2060 PRINT "4 - PRINT IRS FORM 4562 - DEPRECIATION"
  13. 2070 PRINT
  14. 2080 PRINT "5 - FINISHED"
  15. 3000 PRINT
  16. 3010 INPUT Z
  17. 3020 IF Z<1 OR Z>5 THEN 1025
  18. 4000 ON Z GOTO 9000,9050,9100,9150,9200
  19. 9000 print clear$:print
  20. print "Install appropriate Capital Goods disk in Drive B:"
  21. print:input "Type return to continue.";line temp$:initialize
  22. chain "CGENTRY"
  23. 9050 print clear$:print
  24. print "Install appropriate Capital Goods disk in Drive B:"
  25. print:input "Type return to continue.";line temp$:initialize
  26. chain "CGDEPCAL"
  27. 9100 print clear$:print
  28. print "Install appropriate Capital Goods disk in Drive B:"
  29. print:input "Type return to continue.";line temp$:initialize
  30. chain "CGRPT"
  31. 9150 print clear$:print
  32. print "Install appropriate Capital Goods disk in Drive B:"
  33. print:input "Type return to continue.";line temp$:initialize
  34. chain "CGFM4562"
  35. 9200 initialize
  36. CHAIN "MASTER4"
  37. 9800 GOTO 1025