Controlling an LED like this is a great way to introduce yourself to microcontrollers and electronics. You'll learn how to read data sheets, how to perform low-level system configuration, and how to build some electronic circuits. But as you've probably seen already, even the simplest tasks require a bit of bit-twiddling and trial-and-error at first. The good news is that, once you understand the basics, you can apply the same techniques to entire classes of microcontollers, and you'll develop your own library of functions that will make it increasingly easier to build new projects.
The 16F628A has memory-mapped I/O, which means its internal registers control the behavior of its special-function pins.
According to the data sheet (PDF), the 28A has two analog comparators. Each comparator is connected to three pins on the 28A. Two pins are used for input: they're connected to the voltages you want to compare. The third pin is used for output: the comparator indicates which input voltage is higher by setting the voltage on the output pin high or low.
The 28A also has a voltage reference that's connected to another pin. This can generate a known voltage, and you can connect it to one of the comparator inputs. Connect your test voltage to the other comparator input, and use the output pin to drive the LED. Then the LED will turn on or off when your test voltage is higher than the reference. (The 28A is actually configurable: you can choose which condition will light the LED.)
The data sheet includes some assembly code that shows you how to configure the comparator by setting the appropriate bits in its control register.
You'll also need to find out whether the 28A can drive an LED directly. Some devices contain the appropriate current-limiting circuitry internally; others require you to provide it yourself.
You may have some luck with a web search for "16F628A application notes" (for manufacturer's suggestions) or just "16F628A application" (for apps created by users). This looks interesting, and the author offers to email his software to you. Maybe he'll offer some tips as well.
Good luck!