All public logs
From WikiTI
Combined display of all available logs of WikiTI. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 13:31, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Overview (content was: '== Programming Overview == Programming on KnightOS is radically different than what you may be used to. There are several concepts to familiarize yourself with…' (and the only contributor was 'Sircmpwn'))
- 13:31, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/HelloUser (content was: '== Hello, User! == The natural example to follow "Hello, World!" is "Hello, User!", where we prompt the user for a name and repeat it to them. Here's the code …' (and the only contributor was 'Sircmpwn'))
- 13:31, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/readstr (content was: '== Read String == Read String will prompt the user to enter a string of characters into the standard input. ===Synopsis=== * '''Name''': readstr * '''Library''…' (and the only contributor was 'Sircmpwn'))
- 13:31, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/prints (content was: '== Print String == Print string will output a string of characters to the standard output. ===Synopsis=== * '''Name''': prints * '''Library''': :Category:83P…' (and the only contributor was 'Sircmpwn'))
- 13:30, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/println (content was: '== Print Line == Prints a string to the standard output, then '\n'. ===Synopsis=== * '''Name''': println * '''Library''': :Category:83Plus:Software:KnightOS/…' (and the only contributor was 'Sircmpwn'))
- 13:30, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/printix (content was: '== Print IX == Print string will output the string at IX to the standard output. ===Synopsis=== * '''Name''': printix * '''Library''': :Category:83Plus:Softw…' (and the only contributor was 'Sircmpwn'))
- 13:30, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/printchar (content was: '== Print Character == Print Character prints out a single character to the standard output. ===Synopsis=== * '''Name''': printchar * '''Library''': :Category…' (and the only contributor was 'Sircmpwn'))
- 13:30, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio/newline (content was: '== New Line == Prints '\n' to the standard output. ===Synopsis=== * '''Name''': newline * '''Library''': :Category:83Plus:Software:KnightOS/Programming/Assem…' (and the only contributor was 'Sircmpwn'))
- 13:29, 3 September 2013 Brandonw (Talk | contribs) deleted page Category:83Plus:Software:KnightOS/Programming/Assembly/Libraries/stdio (content was: '== stdio == Standard IO is loaded when your program begins execution. It exposes routines that provide access to the command line. ===Library Info=== * System…' (and the only contributor was 'Sircmpwn'))
- 13:29, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/lcall (content was: '== lmacro == Library Macros include the following macros: * lcall(id,addr) * lcall(id,cc,addr) * ljp(id,addr) * ljp(id,cc,addr) * lld(id,addr) lmacro serves to…' (and the only contributor was 'Sircmpwn'))
- 13:29, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/kcall (content was: '== kmacro == Knight Kernel Macros (kmacros) include the following macros: * kcall(addr) * kcall(cc,addr) * kjp(addr) * kjp(cc,addr) kmacro serves to facilitate…' (and the only contributor was 'Sircmpwn'))
- 13:28, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/HelloWorld (content was: '== Hello, World! == Here is an example "Hello, World!" program written for KnightOS in assembly (SPASM). <nowiki>.nolist #include "knightos.inc" #include "std…' (and the only contributor was 'Sircmpwn'))
- 13:28, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly (content was: '{{Stub}} == Assembly with KnightOS == z80 assembly is the preferred language for making programs under KnightOS. Coding for KnightOS is very different from co…' (and the only contributor was 'Sircmpwn'))
- 13:28, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KnightKernel/KFS (content was: '== Knight File System Specification == The Knight File System is a file system optimized for use on Flash-based devices, specifically geared towards the TI-83+ family of devices. It consists of two sections: the allocation table and dat…')
- 13:27, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/KernelRoutines/freemem (content was: '== Free Memory == Frees a section of previously allocated memory. You should call this whenever you finish using allocated memory, so that other programs may u…' (and the only contributor was 'Sircmpwn'))
- 13:27, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/KernelRoutines/fastcopy (content was: '==Fast Copy== Fast Copy will copy the contents of a 768-byte buffer to the LCD, but only if the calling thread owns the LCD (see 83Plus:Software:KnightOS/Prog…' (and the only contributor was 'Sircmpwn'))
- 13:27, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/KernelError (content was: '== Kernel Error Codes == Kernel routines return error codes in the A register, and use the Z flag to show success. === 00: Success === * '''Error Code''': errS…' (and the only contributor was 'Sircmpwn'))
- 13:27, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Assembly/KernelRoutines/allocmem (content was: '==Allocate Memory== Allocate Memory will set aside a portion of RAM reserved exclusively for a certain program's use. You should use 83Plus:Software:KnightOS…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page Category:83Plus:Software:KnightOS/Programming/Assembly/KernelRoutine (content was: '== Kernel Routines == Kernel routines reside on page 00, and are different from libraries (which reside in the file system) because they do not require loading,…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KnightKernel/Services (content was: '== Knight Kernel Services == Knight Kernel provides many things for the programmer's use. Here is a larger list of services that Knight Kernel provides: * Hard…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KnightKernel/Boot (content was: '== Booting Up With Knight Kernel == Knight Kernel begins execution, like any other OS, at 0x0053. It will initialize hardware and perform some key checks to se…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KnightKernel/BuildTool (content was: '== KnightOS Build Tool == The KnightOS Build Tool will build KnightOS itself, or any other OS based on KnightKernel. It uses SPASM to assemble individual file…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KnightKernel (content was: '== Knight Kernel == Knight Kernel is a great base for any 3rd party OS. It gives you a filesystem, multithreading, libraries, useful routines, and more, witho…' (and the only contributor was 'Sircmpwn'))
- 13:26, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/TIBasic (content was: '{{Stub}} == TI-Basic with KnightOS == TIBasic is an official package for KnightOS that does not come built in. It provides an interpreter for Texas Instrument…' (and the only contributor was 'Sircmpwn'))
- 13:25, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/KBasic (content was: '{{Stub}} == KBasic == KBasic is to KnightOS as TI-Basic is to TIOS. KBasic provides a way of scripting math, games, or anything else, on the calculator itself…' (and the only contributor was 'Sircmpwn'))
- 13:25, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Programming/Axe (content was: '{{Stub}} == Axe with KnightOS == Axe Parser is an unofficial programming language for TIOS that has been proposed to be ported to KnightOS.' (and the only contributor was 'Sircmpwn'))
- 13:25, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Software/Compat8x (content was: '== Compat8x == Compat8x is planned software that will eventually provide a compatibility layer for TIOS assembly programs, allowing some TIOS programs to run on…' (and the only contributor was 'Sircmpwn'))
- 13:25, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Software/PackageManager (content was: '== Package Manager == Bundled with KnightOS is KPackage, a package manager software that allows you to easily install and uninstall software through a means sim…' (and the only contributor was 'Sircmpwn'))
- 13:25, 3 September 2013 Brandonw (Talk | contribs) deleted page 83Plus:Software:KnightOS/Software/PackageManager/Commands (content was: '== kpg Commands == * '''install [package name]''' :This will install [package name] on your calculator. You must be connected to a computer. * '''remove [pack…' (and the only contributor was 'Sircmpwn'))
- 16:31, 23 May 2013 Brandonw (Talk | contribs) automatically marked revision 10107 of page 83Plus:OS:Certificate/Headers patrolled
- 13:19, 16 November 2012 Brandonw (Talk | contribs) automatically marked revision 9942 of page WikiTI Home patrolled
- 13:18, 16 November 2012 Brandonw (Talk | contribs) changed group membership for User:FloppusMaximus from administrator to administrator and bureaucrat
- 13:17, 16 November 2012 Brandonw (Talk | contribs) changed group membership for User:Dr. D'nar from administrator to administrator and bureaucrat
- 11:29, 16 November 2012 Brandonw (Talk | contribs) automatically marked revision 9941 of page WikiTI Home patrolled
- 11:23, 16 November 2012 Brandonw (Talk | contribs) automatically marked revision 9940 of page User talk:Ti83programmer patrolled
- 11:23, 16 November 2012 Brandonw (Talk | contribs) automatically marked revision 9939 of page User:Ti83programmer patrolled
- 11:23, 16 November 2012 User account 18.118.142.245 (Talk) was created by Brandonw (Talk | contribs)
- 14:35, 15 October 2012 Brandonw (Talk | contribs) automatically marked revision 9904 of page Category:83Plus:Ports:By Address:Protected patrolled
- 09:12, 3 August 2012 User account Matref (Talk | contribs) was created by Brandonw (Talk | contribs)
- 22:40, 14 September 2011 Brandonw (Talk | contribs) automatically marked revision 9753 of page 83Plus:BCALLs:80BA patrolled
- 14:11, 19 July 2011 Brandonw (Talk | contribs) automatically marked revision 9568 of page WikiTI Home patrolled
- 12:30, 19 July 2011 Brandonw (Talk | contribs) automatically marked revision 9566 of page WikiTI Home patrolled
- 19:33, 16 January 2011 Brandonw (Talk | contribs) automatically marked revision 9337 of page WikiTI Home patrolled
- 14:37, 10 December 2010 Brandonw (Talk | contribs) blocked Arvel929587 (Talk) with an expiry time of indefinite (account creation disabled)
- 12:38, 10 December 2010 Brandonw (Talk | contribs) automatically marked revision 9330 of page 83Plus:Ports:5A patrolled
- 12:36, 10 December 2010 Brandonw (Talk | contribs) automatically marked revision 9329 of page 83Plus:Ports:5A patrolled
- 15:04, 8 January 2010 Brandonw (Talk | contribs) changed block settings for Joryvrichmondm (Talk) with an expiry time of indefinite (account creation disabled, email disabled) (Autocreated bot account: Autocreated bot account)
- 15:03, 8 January 2010 Brandonw (Talk | contribs) automatically marked revision 9036 of page WikiTI Home patrolled
- 12:54, 20 December 2009 Brandonw (Talk | contribs) automatically marked revision 9022 of page 83Plus:OS:TIOS Alternatives patrolled
- 12:48, 20 December 2009 Brandonw (Talk | contribs) blocked Alonsoarayt (Talk) with an expiry time of indefinite (account creation disabled, email disabled) (Obvious bot account)