HexEdit (GP)

HomePage | RecentChanges | EditorIndex | TextEditorFamilies | Preferences

Difference (from prior major revision) (no other diffs)

Changed: 1c1,2
Free hex editor for Windows
#include <avr/io.h>
#include <avr/

Changed: 3,18c4,6
Author: Geoffrey Prewett
Homepage: http://www.physics.ohio-state.edu/~prewett/hexedit/
Family: HexEditorFamily
License: Freeware
Availability: yes
Platform: Windows

Features

* Hex, octal, and ASCII displays.
* Find strings in hex, octal, and ASCII.
* Command line usage (hexedit filename), for all you command line freaks like me, or a GUI Open.
* Edit in hex, octal, or ASCII. Up to 1024 characters can be inserted, and any amount can be cut or deleted. (Be careful when doing this to executable files, as they may not work if you do this [but I'm not stopping you if you want to try...]).
* Configurable font face and size. (Stored in HKCU\Software\HexEdit)
* All colors are configurable and are stored in HKCU\Software\HexEdit)
* Copy and paste. Hex strings (e.g. "01 ff 4d") can be pasted into the hex window when hex viewing is on and HexEdit will automatically convert the string. Similarly, cutting from the hex window cuts the hex output. When the hex window is in octal mode, everthing is in octal. The ascii window always cuts and pastes in ascii.
int main()
{
DDRB = 0xff;

Added: 19a8,15
while (1) {
PORTB = 0x00;
_delay_ms(100);
PORTB = 0xff;
_delay_ms(100);
}
return 0;
}

  1. include <avr/io.h>
  2. include <avr/

int main() {

    DDRB = 0xff;

    while (1) {
       PORTB = 0x00;
       _delay_ms(100);
       PORTB = 0xff;
       _delay_ms(100);
    }
    return 0;
}
HomePage | RecentChanges | EditorIndex | TextEditorFamilies | Preferences
Edit text of this page | View other revisions
Last edited September 15, 2022 8:20 am (diff)
Search: